/* WuFan Website Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #f8f9fa;
  font-size: 14px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  margin-bottom: 40px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #663399;
}

.logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #663399, #8A2BE2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: bold;
}

h1 {
  color: #663399;
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

h2 {
  color: #663399;
  font-size: 1.4rem;
  margin: 28px 0 14px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}

h3 {
  color: #333;
  font-size: 1.3rem;
  margin: 24px 0 12px 0;
}

p {
  margin-bottom: 16px;
  color: #444;
}

ul, ol {
  margin: 16px 0 16px 24px;
}

li {
  margin-bottom: 8px;
  color: #444;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.nav-link {
  padding: 12px 24px;
  background: #663399;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background: #8A2BE2;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.app-badge {
  height: 60px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}

.contact-info {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
  border-left: 4px solid #663399;
}

.highlight {
  background: #fff3cd;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin: 24px 0;
}

.warning {
  background: #f8d7da;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  margin: 24px 0;
}

.footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 20px 16px;
    padding: 16px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-link {
    width: 200px;
    text-align: center;
  }
  
  .app-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* Print Styles */
@media print {
  .nav-links, .app-badges {
    display: none;
  }
  
  .container {
    box-shadow: none;
    background: white;
  }
}