/* 影视网站全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  background-color: #0a0e1a;
  color: #e0e0e0;
  line-height: 1.6;
}

/* 导航栏样式 */
.nav-header-unique {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo-brand-section h1 {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.logo-brand-section h1 a {
  text-decoration: none;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.main-nav-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav-menu a:hover {
  color: #ff6b6b;
}

.main-nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  transition: width 0.3s ease;
}

.main-nav-menu a:hover::after {
  width: 100%;
}

/* 英雄区域样式 */
.hero-banner-section {
  background: linear-gradient(135deg, #1e2635 0%, #0a0e1a 100%);
  padding: 5rem 20px;
  text-align: center;
}

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

.hero-content-wrapper h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
}

.hero-content-wrapper p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

.cta-button-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  animation: fadeInUp 1.4s ease;
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* 容器样式 */
.content-container-main {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 20px;
}

.section-title-heading {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 电影网格样式 */
.movie-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.movie-card-item {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.movie-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(255, 107, 107, 0.3);
}

.movie-poster-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.movie-card-item:hover .movie-poster-image {
  transform: scale(1.1);
}

.movie-info-details {
  padding: 1.5rem;
}

.movie-info-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ff6b6b;
}

.movie-info-details p {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.movie-rating-score {
  display: inline-block;
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1f2e;
}

/* 列表样式 */
.content-list-wrapper {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.content-list-wrapper ul {
  list-style: none;
}

.content-list-wrapper li {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.content-list-wrapper li:hover {
  background: rgba(255, 107, 107, 0.1);
  padding-left: 1.5rem;
}

.content-list-wrapper li:last-child {
  border-bottom: none;
}

/* 页脚样式 */
.footer-section-bottom {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  padding: 3rem 20px 1.5rem;
  margin-top: 5rem;
  border-top: 2px solid rgba(255, 107, 107, 0.3);
}

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

.footer-column-block h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

.footer-column-block a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column-block a:hover {
  color: #ff6b6b;
}

.footer-bottom-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #808080;
}

/* 关于页面样式 */
.about-intro-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.about-intro-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

/* 特色区域 */
.features-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card-box {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.feature-card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.feature-icon-display {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card-box h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* 联系表单样式 */
.contact-form-container {
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.form-group-wrapper label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
  font-weight: 500;
}

.form-group-wrapper input,
.form-group-wrapper textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group-wrapper input:focus,
.form-group-wrapper textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  background: rgba(255, 255, 255, 0.08);
}

.form-submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .main-nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

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

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

  .section-title-heading {
    font-size: 1.8rem;
  }
}
