/* 糖心vlog官网 - 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

.anime-header-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.anime-logo-wrapper h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.anime-logo-wrapper h1 a {
  color: white;
  text-decoration: none;
}

.anime-menu-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.anime-menu-list a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  font-weight: 500;
}

.anime-menu-list a:hover {
  opacity: 0.8;
}

.anime-hero-section {
  margin-top: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.anime-hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.anime-hero-content p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.anime-btn-primary {
  background: white;
  color: #667eea;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  text-decoration: none;
}

.anime-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.anime-section-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.anime-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
  padding-bottom: 1rem;
}

.anime-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.anime-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.anime-card-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.anime-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.anime-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.anime-card-content {
  padding: 1.5rem;
}

.anime-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #667eea;
}

.anime-card-content p {
  color: #666;
  line-height: 1.6;
}

.anime-feature-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.anime-feature-box:hover {
  transform: translateY(-5px);
}

.anime-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.anime-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.anime-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

.anime-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.anime-gallery-item:hover img {
  transform: scale(1.1);
}

.anime-footer-section {
  background: #2d3748;
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 5rem;
}

.anime-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.anime-footer-block h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.anime-footer-block ul {
  list-style: none;
}

.anime-footer-block ul li {
  margin-bottom: 0.5rem;
}

.anime-footer-block a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s;
}

.anime-footer-block a:hover {
  color: #667eea;
}

.anime-copyright-text {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  color: #cbd5e0;
}

.anime-about-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.anime-about-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.anime-about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.anime-about-text {
  flex: 1;
}

.anime-about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.anime-about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.anime-news-list {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.anime-news-item {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.3s;
}

.anime-news-item:last-child {
  border-bottom: none;
}

.anime-news-item:hover {
  background: #f7fafc;
}

.anime-news-date {
  color: #667eea;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

.anime-news-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.anime-contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}

.anime-form-group {
  margin-bottom: 1.5rem;
}

.anime-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.anime-form-group input,
.anime-form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.anime-form-group input:focus,
.anime-form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .anime-menu-list {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .anime-hero-content h2 {
    font-size: 2rem;
  }

  .anime-about-wrapper {
    flex-direction: column;
  }

  .anime-section-title {
    font-size: 2rem;
  }
}
