* {
  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.6;
  color: #333;
  background-color: #f5f5f5;
}

.mianfei-yingshi-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mianfei-yingshi-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mianfei-yingshi-logo {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.mianfei-yingshi-nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.mianfei-yingshi-nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.mianfei-yingshi-nav-link:hover {
  opacity: 0.8;
}

.mianfei-yingshi-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.mianfei-yingshi-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.mianfei-yingshi-hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.mianfei-yingshi-hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.mianfei-yingshi-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mianfei-yingshi-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mianfei-yingshi-content-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.mianfei-yingshi-section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  font-weight: 700;
}

.mianfei-yingshi-movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mianfei-yingshi-movie-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mianfei-yingshi-movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mianfei-yingshi-movie-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mianfei-yingshi-movie-info {
  padding: 20px;
}

.mianfei-yingshi-movie-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.mianfei-yingshi-movie-description {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.6;
}

.mianfei-yingshi-feature-section {
  background: white;
  padding: 60px 20px;
  margin: 60px 0;
}

.mianfei-yingshi-feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mianfei-yingshi-feature-item {
  text-align: center;
  padding: 30px;
}

.mianfei-yingshi-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.mianfei-yingshi-feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.mianfei-yingshi-feature-text {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.8;
}

.mianfei-yingshi-footer {
  background-color: #2c3e50;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.mianfei-yingshi-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.mianfei-yingshi-footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mianfei-yingshi-footer-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.mianfei-yingshi-footer-link:hover {
  opacity: 0.7;
}

.mianfei-yingshi-copyright {
  font-size: 14px;
  opacity: 0.8;
}

.mianfei-yingshi-text-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mianfei-yingshi-text-content h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.mianfei-yingshi-text-content h3 {
  font-size: 22px;
  color: #34495e;
  margin: 30px 0 15px;
  font-weight: 600;
}

.mianfei-yingshi-text-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.mianfei-yingshi-text-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.mianfei-yingshi-text-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .mianfei-yingshi-nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .mianfei-yingshi-hero-title {
    font-size: 32px;
  }

  .mianfei-yingshi-hero-description {
    font-size: 16px;
  }

  .mianfei-yingshi-section-title {
    font-size: 28px;
  }

  .mianfei-yingshi-movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .mianfei-yingshi-text-content {
    padding: 20px;
  }
}
