/* Use System Fonts */
* {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.template-card, .submission-card, [class*="card"], .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  margin-bottom: 16px;
}

.template-card:hover, .submission-card:hover, [class*="card"]:hover, .card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.max-w-6xl {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

button, .btn, [class*="button"] {
  border-radius: 8px !important;
  font-weight: 500 !important;
  padding: 10px 20px !important;
  transition: all 0.2s ease !important;
}

button:hover, .btn:hover {
  transform: scale(1.02);
}

.btn-primary, [class*="btn-primary"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none !important;
  color: white !important;
}

nav, header, [class*="navbar"] {
  background: white !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 16px 32px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

input, textarea, select {
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 10px 14px !important;
  transition: border-color 0.2s ease !important;
}

input:focus, textarea:focus, select:focus {
  border-color: #667eea !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

html {
  scroll-behavior: smooth;
}
