/* ============================================
   汤不热视频 原创样式表
   品牌色系：火焰橙 + 深夜蓝 + 金色点缀
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary: #1A1A2E;
  --accent: #FFD700;
  --bg-dark: #0F0F1A;
  --bg-card: #1E1E32;
  --bg-card-hover: #2A2A45;
  --text-light: #E8E8E8;
  --text-muted: #A0A0B8;
  --text-white: #FFFFFF;
  --border-color: #2E2E4A;
  --gradient-fire: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
  --gradient-dark: linear-gradient(180deg, #0F0F1A 0%, #1A1A2E 100%);
  --shadow-card: 0 4px 20px rgba(255, 107, 53, 0.15);
  --shadow-hover: 0 8px 32px rgba(255, 107, 53, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* 全局重置 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   顶部导航栏
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 15, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.site-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-white);
  background: rgba(255, 107, 53, 0.15);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* 搜索框 */
.search-bar {
  background: var(--secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  margin-top: 68px;
}

.search-bar .container {
  display: flex;
  justify-content: center;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 4px 4px 4px 20px;
  width: 100%;
  max-width: 600px;
  transition: var(--transition);
}

.search-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.search-wrapper input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 8px 0;
}

.search-wrapper input::placeholder {
  color: var(--text-muted);
}

.search-wrapper button {
  background: var(--gradient-fire);
  border: none;
  color: var(--text-white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.search-wrapper button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ============================================
   Banner区域
   ============================================ */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15,15,26,0.3) 0%, rgba(15,15,26,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.hero-content .hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-fire);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--text-white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ============================================
   通用区块标题
   ============================================ */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 16px;
}

/* ============================================
   视频卡片网格
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.video-card .thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--secondary);
}

.video-card .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .thumb img {
  transform: scale(1.08);
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.video-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-card .play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-card .thumb .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--text-white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.video-card .card-body {
  padding: 16px;
}

.video-card .card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.video-card .card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.video-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-card .card-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.video-card .card-tags span {
  background: rgba(255, 107, 53, 0.12);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* ============================================
   模块卡片（国际传媒、AI赋能等）
   ============================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.module-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.module-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.module-card .card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.module-card .card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   专家展示
   ============================================ */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.expert-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.expert-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--primary);
}

.expert-card h3 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.expert-card .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.expert-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.expert-card .expert-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.expert-card .expert-btns a {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: var(--transition);
}

.expert-card .expert-btns a:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* ============================================
   FAQ手风琴
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-white);
  font-size: 1rem;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   用户评论
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.review-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card .review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-card .reviewer-info .name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.9rem;
}

.review-card .reviewer-info .date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   联系我们
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.contact-card h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-card img {
  max-width: 160px;
  margin: 12px auto;
  border-radius: var(--radius-sm);
}

/* ============================================
   合作品牌墙
   ============================================ */
.xry6vqd {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.xry6vqd .x7v037x9n {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.xry6vqd .x7v037x9n:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   How-To指南
   ============================================ */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.howto-step {
  text-align: center;
  padding: 24px;
}

.howto-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-fire);
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.howto-step h3 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.howto-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================
   社交分享
   ============================================ */
.xmc47u {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
}

.xmc47u a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  transition: var(--transition);
}

.xmc47u .xqu89gp { background: #07C160; }
.xmc47u .xfoielpo9 { background: #E6162D; }
.xmc47u .xvbwra { background: #161823; border: 1px solid #444; }
.xmc47u .xcro0u9rx { background: #00A1D6; }

.xmc47u a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: var(--text-white);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col img {
  max-width: 120px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

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

.footer-bottom a {
  color: var(--primary);
}

/* ============================================
   面包屑导航
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  margin-top: 68px;
  background: var(--secondary);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.breadcrumb-list a {
  color: var(--text-muted);
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list span {
  color: var(--text-muted);
}

.breadcrumb-list .current {
  color: var(--primary);
}

/* ============================================
   内页通用
   ============================================ */
.page-hero {
  padding: 100px 0 48px;
  text-align: center;
  background: var(--gradient-dark);
  margin-top: 68px;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 48px 0;
}

.page-content h2 {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ============================================
   数据统计条
   ============================================ */
.xpjqi7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.xrdqn1o0 {
  text-align: center;
}

.xrdqn1o0 .xp368r2 {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xrdqn1o0 .xfgkk218 {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ============================================
   MCP服务前端代码区
   ============================================ */
.xv5114r5 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}

.xv5114r5 .xicx9yg3a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-white);
  font-weight: 600;
}

.xv5114r5 .x2l1p3ay9 {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
}

.xv5114r5 .x1jesy {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 26, 0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .xpjqi7 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 80px 0 32px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .btn-primary, .btn-outline {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .header-inner {
    height: 56px;
  }

  .search-bar {
    margin-top: 56px;
  }

  .breadcrumb {
    margin-top: 56px;
  }

  .page-hero {
    margin-top: 56px;
  }
}

/* 懒加载占位 */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
