:root {
  --primary: #6d5dfc;
  --accent: #22d3ee;
  --bg: #0f1020;
  --text: #e8eaf6;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(109,93,252,0.2);
  --text-muted: #9aa0b4;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--primary); }

/* 导航栏 */
.navbar-custom {
  background-color: rgba(15, 16, 32, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-custom.scrolled {
  background-color: rgba(15, 16, 32, 0.95);
  box-shadow: none;
  padding: 10px 0;
}

.navbar-brand-custom {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand-custom i { color: var(--primary); }

.nav-link-custom {
  color: var(--text) !important;
  font-weight: 500;
  margin: 0 12px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link-custom:hover::after { width: 100%; }
.nav-link-custom:hover { color: var(--accent) !important; }

.navbar-toggler-custom {
  border: 1px solid var(--border);
  background: transparent;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--text);
  font-size: 1.2rem;
}

/* Hero 滚动关键词 */
.hero-section {
  padding: 80px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.tag-cloud span {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  animation: float 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
  transition: all 0.2s;
}

.tag-cloud span:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 区块 */
.section-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  color: var(--primary);
  font-size: 1.4rem;
}

/* 海报卡片 */
.movie-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.movie-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: linear-gradient(180deg, rgba(15,16,32,0.6), rgba(15,16,32,0.2));
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.4s ease;
}

.movie-poster img.loaded {
  opacity: 1;
  transform: scale(1);
}

.movie-card:hover .movie-poster img {
  transform: scale(1.05);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,16,32,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
}

.play-btn {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

.movie-card:hover .play-btn {
  transform: scale(1);
  opacity: 1;
}

.movie-info {
  padding: 14px;
  border-top: 1px solid var(--border);
}

.movie-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.movie-rating {
  color: #ffc107;
  font-weight: 700;
}

.movie-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.movie-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
}

/* 横向滑动 */
.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scroll-behavior: smooth;
}

.scroll-row::-webkit-scrollbar {
  height: 4px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.scroll-row .movie-card {
  flex: 0 0 200px;
}

/* 榜单 */
.rank-list {
  list-style: none;
  border: 1px solid var(--border);
}

.rank-list li {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

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

.rank-list li:hover { background: var(--surface); }

.rank-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  min-width: 40px;
  font-style: italic;
}

.rank-title {
  flex: 1;
  font-weight: 600;
}

.rank-score {
  color: #ffc107;
  font-weight: 700;
}

/* 分类入口 */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.category-item {
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
  background: transparent;
}

.category-item:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.category-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.category-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* 时间线 */
.timeline {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.timeline-item {
  position: relative;
  padding: 16px 0 16px 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.timeline-text {
  font-weight: 500;
}

/* 标签页切换 */
.tab-panel {
  border: 1px solid var(--border);
  padding: 24px;
}

.tab-list {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* 精选片单 */
.pick-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.pick-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 4px;
}

.pick-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.pick-text span {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}

/* 今天看什么 */
.today-box {
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  background: var(--surface);
}

.today-result {
  font-size: 1.3rem;
  font-weight: 700;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.today-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.today-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* 弹窗 */
.detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.detail-overlay.show {
  display: block;
  opacity: 1;
}

.detail-sidebar {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 2001;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 32px;
}

.detail-sidebar.open {
  right: 0;
}

.detail-sidebar .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--surface);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-poster .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109,93,252,0.3), rgba(34,211,238,0.3));
  font-size: 3rem;
}

.detail-field {
  margin-bottom: 12px;
}

.detail-field-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.detail-field-value {
  font-weight: 500;
  font-size: 0.95rem;
}

.detail-plot {
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* 友情链接 */
.friend-links {
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.friend-links a {
  color: var(--text);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.friend-links a:hover {
  color: var(--accent);
}

/* 页脚 */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-title {
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 32px;
}

/* 图片懒加载占位 */
.img-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(109,93,252,0.1), rgba(34,211,238,0.1));
}

/* 响应式 */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .section-block { padding: 40px 0; }
  .section-title { font-size: 1.4rem; }
  .scroll-row .movie-card { flex: 0 0 150px; }
  .detail-sidebar { width: 100%; }
}

@media (max-width: 576px) {
  .hero-section { padding: 60px 0 30px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .today-box { padding: 24px; }
}

/* --- 子页面追加 --- */
/* 本页专属少量补充样式 */
    .about-hero { padding: 80px 0 40px; background: linear-gradient(135deg, rgba(109,93,252,0.08) 0%, rgba(34,211,238,0.05) 100%); }
.about-hero h1 { font-size: 2.5rem; font-weight: 800; }
.about-block { padding: 50px 0; border-bottom: 1px solid var(--border); }
.about-block:last-child { border-bottom: none; }
.about-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.about-text { color: var(--text); line-height: 1.8; font-size: 1rem; }
.about-text p { margin-bottom: 16px; }
.about-highlight { color: var(--accent); font-weight: 600; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 12px; }
.feature-list li:last-child { border-bottom: none; }
.feature-list i { color: var(--primary); margin-top: 4px; }
.stat-row { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 30px; }
.stat-item { flex: 1; min-width: 150px; text-align: center; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }
.philosophy-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 30px; margin-bottom: 20px; transition: transform 0.3s, box-shadow 0.3s; }
.philosophy-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(109,93,252,0.15); }
.about-hero h1 { font-size: 1.8rem; }
.about-hero { padding: 50px 0 30px; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .disclaimer-hero {
      background: linear-gradient(135deg, rgba(109,93,252,0.15) 0%, rgba(34,211,238,0.08) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 3rem 2rem;
      margin: 2rem 0 3rem;
    }
.disclaimer-hero h1 {
      color: var(--primary);
      font-weight: 800;
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
.disclaimer-hero p {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 800px;
      margin: 0 auto;
    }
.disclaimer-section {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
      transition: border-color 0.3s ease;
    }
.disclaimer-section:hover {
      border-color: rgba(109,93,252,0.5);
    }
.disclaimer-section h2 {
      color: var(--text);
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
      padding-bottom: 0.8rem;
      border-bottom: 2px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
.disclaimer-section h2 i {
      color: var(--primary);
      font-size: 1.2rem;
    }
.disclaimer-section h3 {
      color: var(--text);
      font-weight: 600;
      font-size: 1.1rem;
      margin: 1.5rem 0 0.8rem;
    }
.disclaimer-section p {
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
.disclaimer-section ul {
      color: var(--text-muted);
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }
.disclaimer-section ul li {
      margin-bottom: 0.5rem;
      line-height: 1.7;
      position: relative;
    }
.disclaimer-section ul li::before {
      content: '\f105';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--primary);
      position: absolute;
      left: -1.2rem;
      font-size: 0.8rem;
      top: 0.2rem;
    }
.notice-box {
      background: rgba(109,93,252,0.1);
      border-left: 4px solid var(--primary);
      border-radius: 8px;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0;
    }
.notice-box p {
      margin-bottom: 0;
      color: var(--text);
      font-size: 0.92rem;
    }
.notice-box i {
      color: var(--primary);
      margin-right: 0.5rem;
    }
.update-date {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .privacy-hero {
      background: linear-gradient(135deg, rgba(109,93,252,0.15) 0%, rgba(34,211,238,0.05) 50%, rgba(15,16,32,0.8) 100%);
      padding: 4rem 0 3rem;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
.privacy-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(109,93,252,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
.privacy-hero h1 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text);
      position: relative;
      z-index: 1;
    }
.privacy-hero p {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 700px;
      position: relative;
      z-index: 1;
    }
.privacy-content {
      padding: 3.5rem 0 5rem;
    }
.privacy-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 2rem;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
.privacy-card:hover {
      border-color: rgba(109,93,252,0.4);
      background: rgba(255,255,255,0.06);
    }
.privacy-card .icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(109,93,252,0.2), rgba(34,211,238,0.1));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      font-size: 1.3rem;
      color: var(--accent);
    }
.privacy-card h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1rem;
      line-height: 1.4;
    }
.privacy-card h2 i {
      color: var(--primary);
      margin-right: 8px;
    }
.privacy-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--accent);
      margin-top: 1.5rem;
      margin-bottom: 0.6rem;
    }
.privacy-card p {
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
.privacy-card ul {
      color: var(--text-muted);
      padding-left: 1.2rem;
      line-height: 1.9;
      font-size: 0.95rem;
    }
.privacy-card ul li {
      margin-bottom: 0.5rem;
    }
.privacy-card ul li::marker {
      color: var(--primary);
    }
.privacy-card .highlight-box {
      background: rgba(109,93,252,0.08);
      border-left: 3px solid var(--primary);
      padding: 1rem 1.5rem;
      border-radius: 0 8px 8px 0;
      margin: 1.5rem 0;
      font-size: 0.95rem;
      color: var(--text);
    }
.privacy-card .highlight-box i {
      color: var(--primary);
      margin-right: 8px;
    }
.privacy-updated {
      display: inline-block;
      background: rgba(34,211,238,0.1);
      color: var(--accent);
      border: 1px solid rgba(34,211,238,0.3);
      padding: 0.4rem 1.2rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
.last-updated {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
.privacy-hero {
        padding: 3rem 0 2rem;
      }
.privacy-hero h1 {
        font-size: 1.7rem;
      }
.privacy-card {
        padding: 1.5rem;
      }

/* --- 子页面追加 --- */
/* 页面专属样式 */
        .contact-section {
            padding: 4rem 0;
        }
.contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
.contact-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(109, 93, 252, 0.15);
        }
.contact-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
.contact-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.75rem;
        }
.contact-text {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.contact-link {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
            word-break: break-all;
        }
.contact-link:hover {
            color: var(--accent);
        }
.faq-list {
            margin-top: 1rem;
        }
.faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            transition: background 0.3s ease;
        }
.faq-item:hover {
            background: rgba(109, 93, 252, 0.08);
        }
.faq-question {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
.faq-answer {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }
.form-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2.5rem;
            max-width: 680px;
            margin: 3rem auto 0;
        }
.form-label {
            color: var(--text);
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }
.form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 1.5rem;
        }
.form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.15);
        }
.form-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }
.form-textarea {
            min-height: 150px;
            resize: vertical;
        }
.submit-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff;
            border: none;
            padding: 0.875rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }
.submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109, 93, 252, 0.3);
        }
.social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            justify-content: center;
        }
.social-link {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 1.25rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
.social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }
.contact-grid {
                grid-template-columns: 1fr;
            }
.form-card {
                padding: 1.5rem;
            }