body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  color: #343a40;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  position: relative;
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 90%;
}

h1 {
  margin-bottom: .5rem;
  font-weight: 600;
}

.description {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: #495057;
}

#dropArea {
  border: 2px dashed #6c757d;
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  color: #6c757d;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dropArea:hover,
#dropArea.highlight {
  background: #e9ecef;
  border-color: #343a40;
  color: #343a40;
}

.icon {
  margin-right: .5rem;
  font-size: 1.5rem;
}

.seo-text {
  font-size: .85rem;
  color: #868e96;
  margin-bottom: 1.5rem;
}

.footer-link {
  margin-top: 1rem;
  font-size: .8rem;
  color: #6c757d;
}

.footer-link a {
  color: #6c757d;
  text-decoration: underline;
}

.footer-link a:hover {
  color: #343a40;
}

.lang-dropdown {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.lang-dropdown select {
  width: auto;
  font-size: 1rem;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0;
  background: #fff;
}
