body {
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* Mood-specific styles */
.mood-angry .resume-header h1 {
  color: #ff4444 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(255,0,0,0.3);
}

.mood-angry .resume-section h3 {
  color: #cc0000;
  border-bottom-color: #ff6666;
}

.mood-angry .resume-section li:before {
  color: #ff4444;
  font-size: 1.2em;
}

.mood-angry .resume-section li {
  font-weight: bold;
}

.mood-sad {
  filter: grayscale(50%) contrast(0.8);
}

.mood-sad .resume-header h1 {
  color: #4477aa;
}

.mood-sad .resume-section h3 {
  color: #6699cc;
  border-bottom-color: #aaddff;
}

.mood-sad .resume-section li:before {
  color: #4477aa;
}

.mood-sad p {
  font-style: italic;
}

.mood-over .resume-header h1 {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

.mood-robot .resume {
  font-family: 'Courier New', monospace;
  border-left: 4px solid #00ff00;
}

/* Responsive */
@media (max-width: 768px) {
  .resume {
    margin: 10px;
    padding: 20px;
  }
  
  h1 {
    font-size: 2em;
  }
}

/* Print friendly */
@media print {
  body { 
    background: white !important; 
    margin: 0 !important; 
    padding: 0 !important; 
    font-size: 12pt;
    line-height: 1.4;
  }
  #output { 
    max-width: none !important; 
    box-shadow: none !important; 
    margin: 0 !important; 
    padding: 0 !important; 
    animation: none !important; 
  }
  button, input, select { display: none !important; }
  h1, h2 { page-break-after: avoid; }
  .resume-section { page-break-inside: avoid; }
}

h1 {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5em;
  margin-bottom: 10px;
}

p {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 30px;
}

input, select, button {
  margin: 10px;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

button {
  background: #007bff;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

.resume {
  max-width: 800px;
  margin: 20px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: left;
  opacity: 0;
  animation: fadeIn 0.8s ease-in forwards;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.resume-header h1 {
  color: #333;
  margin-bottom: 0;
}

.resume-header h2 {
  color: #666;
  margin-top: 0;
}

.resume-section {
  margin: 20px 0;
}

.resume-section h3 {
  color: #444;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.resume-section ul {
  list-style: none;
  padding: 0;
}

.resume-section li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.resume-section li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #007bff;
}
