@charset "utf-8";
/* MK体育在线官网 - 首页专用样式 home.css */
/* 布局：L5极简单屏型 + 胶囊导航 */

/* === 首页全屏Hero === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #2C1F15; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,31,21,0.6) 0%, rgba(44,31,21,0.8) 50%, rgba(44,31,21,0.95) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-badge { display: inline-block; padding: 6px 18px; background: rgba(139, 94, 60, 0.3); border: 1px solid rgba(232, 213, 192, 0.3); border-radius: 20px; color: #E8D5C0; font-size: 12px; letter-spacing: 3px; margin-bottom: 30px; text-transform: uppercase; font-family: "Courier New", "Consolas", "Monaco", monospace; }
.hero h1 { font-size: 52px; color: #E8D5C0; margin-bottom: 20px; line-height: 1.2; font-weight: 700; letter-spacing: 2px; font-family: "Courier New", "Consolas", "Monaco", monospace; }
.hero h1 span { color: #8B5E3C; }
.hero-desc { font-size: 16px; color: rgba(232, 213, 192, 0.7); margin-bottom: 40px; line-height: 1.8; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-arrow { padding: 16px 36px; font-size: 16px; }
.hero .btn-outline { color: #E8D5C0; border-color: rgba(232, 213, 192, 0.4); }
.hero .btn-outline:hover { background: rgba(232, 213, 192, 0.1); border-color: #E8D5C0; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(232, 213, 192, 0.4); font-size: 12px; letter-spacing: 2px; animation: bounce 2s infinite; cursor: pointer; }
.hero-scroll::after { content: '↓'; display: block; text-align: center; margin-top: 4px; font-size: 16px; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* === 服务概览 === */
.services-preview { background: #FDF8F3; padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: 12px; padding: 40px 28px; text-align: center; border: 1px solid rgba(232, 213, 192, 0.5); transition: all 0.4s ease; cursor: pointer; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(44, 31, 21, 0.12); border-color: #E8D5C0; }
.service-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: linear-gradient(135deg, #E8D5C0 0%, #D4B896 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #2C1F15; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; color: #2C1F15; }
.service-card p { font-size: 13px; color: #8B5E3C; line-height: 1.6; }

/* === 品牌宣言 === */
.manifesto { background: linear-gradient(135deg, #2C1F15 0%, #4A3728 100%); padding: 100px 0; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(139, 94, 60, 0.15) 0%, transparent 70%); border-radius: 50%; }
.manifesto-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.manifesto-label { color: #8B5E3C; font-size: 12px; letter-spacing: 4px; margin-bottom: 20px; text-transform: uppercase; font-family: "Courier New", "Consolas", "Monaco", monospace; }
.manifesto h2 { font-size: 36px; color: #E8D5C0; margin-bottom: 24px; line-height: 1.4; }
.manifesto p { color: rgba(232, 213, 192, 0.65); font-size: 15px; line-height: 1.9; }
.manifesto-quote { margin-top: 40px; padding: 24px 32px; border-left: 3px solid #8B5E3C; background: rgba(139, 94, 60, 0.1); border-radius: 0 8px 8px 0; text-align: left; }
.manifesto-quote p { color: #E8D5C0; font-style: italic; font-size: 14px; }

/* === 数据展示 === */
.stats { background: #FDF8F3; padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 30px; }
.stat-number { font-size: 42px; font-weight: 700; color: #8B5E3C; line-height: 1; margin-bottom: 8px; font-family: "Courier New", "Consolas", "Monaco", monospace; }
.stat-label { font-size: 14px; color: #4A3728; }

/* === 最新动态 === */
.news-preview { background: #fff; padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { border-radius: 12px; overflow: hidden; border: 1px solid rgba(232, 213, 192, 0.5); transition: all 0.3s ease; }
.news-card:hover { box-shadow: 0 12px 40px rgba(44, 31, 21, 0.1); transform: translateY(-4px); }
.news-card-img { height: 180px; background: linear-gradient(135deg, #E8D5C0 0%, #D4B896 100%); display: flex; align-items: center; justify-content: center; color: #8B5E3C; font-size: 14px; }
.news-card-body { padding: 24px; }
.news-card-tag { display: inline-block; padding: 3px 10px; background: #E8D5C0; color: #8B5E3C; border-radius: 4px; font-size: 11px; margin-bottom: 10px; }
.news-card h3 { font-size: 16px; margin-bottom: 10px; color: #2C1F15; line-height: 1.5; }
.news-card .date { font-size: 12px; color: #8B5E3C; }

/* === CTA === */
.cta { background: linear-gradient(135deg, #8B5E3C 0%, #6B4423 100%); padding: 80px 0; text-align: center; }
.cta h2 { font-size: 32px; color: #FDF8F3; margin-bottom: 16px; }
.cta p { color: rgba(253, 248, 243, 0.75); margin-bottom: 32px; font-size: 15px; }
.cta .btn-arrow { background: #2C1F15; color: #E8D5C0; }
.cta .btn-arrow:hover { background: #FDF8F3; color: #2C1F15; }

/* === 响应式 === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 32px; }
  .news-grid { grid-template-columns: 1fr; }
  .manifesto h2 { font-size: 26px; }
  .cta h2 { font-size: 24px; }
  .services-preview, .manifesto, .news-preview { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 28px 20px; }
}
