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

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

/* Header Styles */
.anime-header-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.anime-logo-wrapper {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.anime-logo-wrapper:hover {
  transform: scale(1.05);
}

.anime-menu-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.anime-menu-item a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
}

.anime-menu-item a:hover {
  background: rgba(255,255,255,0.2);
}

/* Hero Section */
.anime-hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.anime-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.anime-hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.anime-hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.anime-cta-button {
  background: #fff;
  color: #f5576c;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.anime-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Content Section */
.anime-content-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.anime-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.anime-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.anime-card-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.anime-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.anime-card-content {
  padding: 20px;
}

.anime-card-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.anime-card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Features Section */
.anime-features-wrapper {
  background: #fff;
  padding: 60px 20px;
  margin: 60px 0;
}

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

.anime-feature-box {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  transition: all 0.3s ease;
}

.anime-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.anime-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #667eea;
}

.anime-feature-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* About Section */
.anime-about-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 60px 20px;
  margin: 60px 0;
}

.anime-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.anime-about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.anime-about-content {
  padding: 20px;
}

.anime-about-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.anime-about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Gallery Section */
.anime-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.anime-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
}

.anime-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.anime-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.anime-gallery-item:hover .anime-gallery-overlay {
  transform: translateY(0);
}

/* Contact Section */
.anime-contact-wrapper {
  background: #fff;
  padding: 60px 20px;
  margin: 60px 0;
}

.anime-contact-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.anime-form-label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  font-weight: bold;
}

.anime-form-input,
.anime-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

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

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

.anime-submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.anime-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Footer */
.anime-footer-main {
  background: #2c3e50;
  color: #fff;
  padding: 40px 20px 20px;
}

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

.anime-footer-section {
  padding: 10px;
}

.anime-footer-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

.anime-footer-link {
  display: block;
  color: #bdc3c7;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.anime-footer-link:hover {
  color: #fff;
}

.anime-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
  .anime-menu-list {
    gap: 15px;
    flex-wrap: wrap;
  }

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

  .anime-about-container {
    grid-template-columns: 1fr;
  }

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