body {
  font-family: system-ui, sans-serif;
  background: #0d1b2a;
  color: #e0e1dd;
  margin: 0;
  padding: 2rem;
}

.title {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  color: #90e0ef;
}

.subtitle {
  margin-bottom: 1rem;
  color: #9fb1c7;
}

.dropzone {
  border: 3px dashed #48cae4;
  border-radius: 14px;
  background: #1b263b;
  padding: 2rem;
  color: #e0e1dd;
  margin-bottom: 2rem;
}

.dz-preview .dz-progress {
  background: #203047 !important;
}
.dz-preview .dz-upload {
  background: linear-gradient(90deg, #00b4d8, #48cae4) !important;
}

.rules-card {
  background: #1b263b;
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 2rem;
  color: #e0e1dd;
  line-height: 1.5;
}
.rules-card h2 {
  color: #90e0ef;
  margin-bottom: 1rem;
}
.rules-card a {
  color: #48cae4;
}
.rules-card a:hover {
  color: #90e0ef;
}
/* ===== Party-Uploader Footer ===== */
.party-footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #e0e1dd;
  background: #1b263b;
  border-top: 2px solid #415a77;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-in;
}

.party-footer a {
  color: #48cae4;
  text-decoration: none;
  font-weight: 600;
}

.party-footer a:hover {
  color: #90e0ef;
  text-decoration: underline;
}

/* ===== Copyright Footer ===== */
.site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #778da9;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #415a77;
}

.site-footer a {
  color: #48cae4;
  text-decoration: none;
}

.site-footer a:hover {
  color: #90e0ef;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}