body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  /* Мягкий мятный фон — приятный mint/teal */
  background: linear-gradient(135deg, #eafaf1 0%, #d0f6e9 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin: 2rem 0 1rem 0;
  font-size: 2.1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 14px #48c77414;
}

.dropzone {
  border: 2.5px dashed #48c774;
  padding: 2.2rem 1rem;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  cursor: pointer;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.1rem;
  transition: box-shadow .2s, background .2s, border-color .2s;
  box-shadow: 0 2px 24px #0001;
  outline: none;
  position: relative;
}
/* стрелка удалена */
/*
.dropzone::before {
  content: "⬆️";
  font-size: 1.6em;
  position: absolute;
  left: 16px; top: 16px;
  opacity: 0.18;
  pointer-events: none;
}
*/
.dropzone.dragover, .dropzone:active, .dropzone:focus {
  background: #eaffea;
  box-shadow: 0 6px 32px #3cb37122;
  border-color: #43e97b;
}

.preview {
  margin-top: 1.2rem;
  width: 100%;
  max-width: 430px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
}

.gallery img {
  max-width: 140px;
  max-height: 140px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001, 0 0 0 2px #e1fbe1;
  background: #fff;
  object-fit: cover;
  transition: transform 0.16s, box-shadow 0.2s;
  display: block;
}
.gallery img:hover {
  transform: scale(1.07) rotate(-1.5deg);
  box-shadow: 0 8px 30px #43e97b44;
  border-color: #43e97b;
}

.links-list {
  margin: 0.6rem 0 1rem 0;
  text-align: left;
  display: inline-block;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: 9px;
  box-shadow: 0 3px 16px #3cb37113;
  font-size: 0.99rem;
  word-break: break-all;
}

.copy-btn {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #000;
  border: none;
  padding: 0.68rem 2.2rem;
  border-radius: 10px;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  margin-top: 1.1rem;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 10px #43e97b33;
  transition: background .16s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.copy-btn:hover {
  background: linear-gradient(90deg, #1fd877 0%, #1ad9b6 100%);
  transform: scale(1.03);
}
.copy-btn::before {
  content: "📋";
  font-size: 1.1em;
  margin-right: 0.2em;
}

.crocodile {
  width: 90px;
  margin: 2.2rem auto 0;
  opacity: 0.92;
  display: block;
  transition: transform 0.3s;
}
.crocodile:hover { transform: scale(1.08) rotate(-2deg); }

input[type="file"] {
  display: none;
}

@media (max-width: 600px) {
  body {
    padding: 0 0.4rem;
  }
  h1 {
    font-size: 1.2rem;
    margin: 1.1rem 0 0.6rem 0;
  }
  .dropzone {
    font-size: 0.99rem;
    padding: 1.1rem 0.2rem;
    max-width: 97vw;
  }
  .preview {
    max-width: 99vw;
  }
  .links-list {
    padding: 0.5rem 0.4rem;
    font-size: 0.85rem;
  }
  .gallery img {
    max-width: 90px;
    max-height: 90px;
  }
  .crocodile {
    width: 60px;
    margin-top: 1.4rem;
  }
}
