/* 韩漫大全自定义样式 */
:root {
  --korean-red: #FF6B6B;
  --korean-blue: #4ECDC4;
  --korean-dark: #292929;
  --korean-light: #F8F9FA;
}

/* 韩式渐变背景 */
.korean-gradient {
  background: linear-gradient(135deg, var(--korean-red) 0%, #FF8E8E 100%);
}

.korean-gradient-blue {
  background: linear-gradient(135deg, var(--korean-blue) 0%, #6BDBDB 100%);
}

/* 轮播图样式 */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide.korean-slide-1 {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.carousel-slide.korean-slide-2 {
  background: linear-gradient(135deg, #4ECDC4 0%, #6BDBDB 100%);
}

.carousel-slide.korean-slide-3 {
  background: linear-gradient(135deg, #A8E6CF 0%, #C7F2DB 100%);
}

/* 轮播图内容样式 */
.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 40px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

/* 韩式卡片样式 */
.korean-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.korean-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.korean-card-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.korean-card:hover .korean-card-image {
  transform: scale(1.05);
}

/* 韩式按钮样式 */
.korean-btn {
  background: linear-gradient(135deg, var(--korean-red) 0%, #FF8E8E 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.korean-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.korean-btn-outline {
  background: transparent;
  color: var(--korean-red);
  border: 2px solid var(--korean-red);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.korean-btn-outline:hover {
  background: var(--korean-red);
  color: white;
  transform: translateY(-2px);
}

/* 韩式标签样式 */
.korean-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--korean-red) 0%, #FF8E8E 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.korean-tag-blue {
  background: linear-gradient(135deg, var(--korean-blue) 0%, #6BDBDB 100%);
}

.korean-tag-green {
  background: linear-gradient(135deg, #A8E6CF 0%, #C7F2DB 100%);
  color: var(--korean-dark);
}

/* 韩式文本样式 */
.korean-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--korean-dark);
  margin-bottom: 16px;
  position: relative;
}

.korean-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--korean-red) 0%, #FF8E8E 100%);
  border-radius: 2px;
}

.korean-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* 韩式图片占位符 */
.korean-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.korean-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* 韩式评分样式 */
.korean-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.korean-stars {
  display: flex;
  gap: 2px;
}

.korean-star {
  width: 16px;
  height: 16px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.korean-star.empty {
  background: #E5E7EB;
}

/* 韩式进度条 */
.korean-progress {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.korean-progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--korean-red) 0%, #FF8E8E 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* 韩式分割线 */
.korean-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--korean-red), transparent);
  margin: 40px 0;
}

/* 响应式优化 */
@media (max-width: 768px) {
  .carousel-content {
    padding: 20px;
  }
  
  .korean-title {
    font-size: 1.5rem;
  }
  
  .korean-subtitle {
    font-size: 1rem;
  }
  
  .korean-card-image {
    height: 160px;
  }
}

/* 韩式浮动动画 */
.korean-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* 韩式脉冲动画 */
.korean-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
} 