.home-module {
  animation: fadeIn 0.5s ease-out;
}

.welcome-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 12px;
  margin-bottom: 30px;
}

.welcome-section h1 {
  font-size: 36px;
  color: #667eea;
  margin-bottom: 15px;
  font-weight: 700;
}

.welcome-section .user-name {
  color: #764ba2;
  font-weight: 600;
  font-size: 28px;
}

.welcome-section p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.notice-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.project-info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-left: 4px solid #667eea;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-info-card h3 {
  color: #667eea;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-content {
  line-height: 2;
  color: #444;
  font-size: 15px;
}

.info-content strong {
  color: #764ba2;
  font-weight: 600;
}

.contact-info {
  margin-top: 25px;
  padding: 20px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 8px;
  border: 2px dashed #667eea;
}

.contact-info p {
  margin: 8px 0;
  color: #555;
}

.contact-info .email {
  color: #667eea;
  font-weight: 600;
  font-size: 16px;
  word-break: break-all;
}

.contact-info .email:hover {
  color: #764ba2;
  text-decoration: underline;
}