* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #ffeef8 0%, #fff5f7 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-unique-txv {
  background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container-txv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link-txv {
  text-decoration: none;
}

.site-title-txv {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-nav-txv ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav-txv a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
}

.main-nav-txv a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-section-txv {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 30px auto;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.2);
}

.hero-title-txv {
  font-size: 48px;
  color: #c06c84;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-desc-txv {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.cta-btn-txv {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
  transition: all 0.3s;
}

.cta-btn-txv:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
}

.content-section-txv {
  padding: 60px 0;
}

.section-title-txv {
  font-size: 36px;
  color: #c06c84;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title-txv::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
  margin: 15px auto;
  border-radius: 2px;
}

.manga-grid-txv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.manga-card-txv {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(192, 108, 132, 0.15);
  transition: all 0.3s;
  cursor: pointer;
}

.manga-card-txv:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(192, 108, 132, 0.25);
}

.manga-img-txv {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.manga-info-txv {
  padding: 20px;
}

.manga-title-txv {
  font-size: 20px;
  color: #c06c84;
  margin-bottom: 10px;
  font-weight: bold;
}

.manga-desc-txv {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.manga-meta-txv {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #999;
}

.feature-grid-txv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card-txv {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(192, 108, 132, 0.15);
  transition: all 0.3s;
}

.feature-card-txv:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(192, 108, 132, 0.25);
}

.feature-icon-txv {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-title-txv {
  font-size: 22px;
  color: #c06c84;
  margin-bottom: 15px;
}

.feature-text-txv {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.footer-unique-txv {
  background: linear-gradient(135deg, #c06c84 0%, #ff6b9d 100%);
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-content-txv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section-txv h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section-txv ul {
  list-style: none;
}

.footer-section-txv ul li {
  margin-bottom: 10px;
}

.footer-section-txv a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-section-txv a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom-txv {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.manga-detail-hero-txv {
  background: linear-gradient(135deg, #ffeef8 0%, #fff 100%);
  padding: 40px;
  border-radius: 20px;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(192, 108, 132, 0.1);
}

.manga-detail-content-txv {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}

.manga-cover-txv {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(192, 108, 132, 0.2);
}

.manga-detail-info-txv h2 {
  font-size: 32px;
  color: #c06c84;
  margin-bottom: 20px;
}

.manga-detail-info-txv p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.tag-list-txv {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tag-item-txv {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.chapter-list-txv {
  margin-top: 40px;
}

.chapter-grid-txv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.chapter-item-txv {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(192, 108, 132, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
}

.chapter-item-txv:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: #fff;
  transform: translateY(-3px);
}

.about-content-txv {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(192, 108, 132, 0.1);
  margin: 30px auto;
  line-height: 2;
}

.about-content-txv h2 {
  color: #c06c84;
  font-size: 28px;
  margin: 30px 0 20px;
}

.about-content-txv p {
  color: #555;
  margin-bottom: 20px;
}

.contact-form-txv {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(192, 108, 132, 0.1);
  margin: 30px auto;
  max-width: 700px;
}

.form-group-txv {
  margin-bottom: 25px;
}

.form-group-txv label {
  display: block;
  margin-bottom: 8px;
  color: #c06c84;
  font-weight: bold;
}

.form-group-txv input,
.form-group-txv textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ffeef8;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group-txv input:focus,
.form-group-txv textarea:focus {
  outline: none;
  border-color: #ff6b9d;
}

.form-group-txv textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn-txv {
  background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
  color: #fff;
  padding: 15px 50px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
  transition: all 0.3s;
  width: 100%;
}

.submit-btn-txv:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
}

@media (max-width: 768px) {
  .manga-detail-content-txv {
    grid-template-columns: 1fr;
  }

  .manga-grid-txv {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .main-nav-txv ul {
    gap: 15px;
  }

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