/* ========================================
   乐鱼体育 - 山水田园垂钓风主样式表
   CSS前缀: ly-
   版本: 1.0
   ======================================== */

/* --- Google Fonts 本地化替代 --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* --- CSS变量 --- */
:root {
  --ly-primary: #2E4034;
  --ly-secondary: #5C7369;
  --ly-accent: #D4A276;
  --ly-highlight: #A84C4C;
  --ly-bg: #F5F5F5;
  --ly-text: #333333;
  --ly-text-light: #888888;
  --ly-white: #FFFFFF;
  --ly-shadow: 0 2px 10px rgba(0,0,0,0.08);
  --ly-radius: 4px;
  --ly-font-title: 'Noto Serif SC', serif;
  --ly-font-body: 'Noto Sans SC', sans-serif;
  --ly-transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--ly-font-body);
  color: var(--ly-text);
  background-color: var(--ly-bg);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ly-font-title);
  color: var(--ly-primary);
  line-height: 1.4;
  margin-bottom: 0.8em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1em;
  line-height: 1.8;
}

/* --- 容器 --- */
.ly-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ly-section {
  padding: 80px 0;
}

.ly-section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.ly-section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.ly-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--ly-secondary), var(--ly-accent), var(--ly-secondary));
  border-radius: 2px;
}

.ly-section-title p {
  color: var(--ly-text-light);
  max-width: 600px;
  margin: 15px auto 0;
}

/* --- 竹节分割线 --- */
.ly-bamboo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 8px;
}

.ly-bamboo-divider::before,
.ly-bamboo-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ly-secondary), transparent);
}

.ly-bamboo-divider span {
  color: var(--ly-accent);
  font-size: 1.5rem;
  line-height: 1;
}

/* --- 导航栏 --- */
.ly-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--ly-bg);
  border-bottom: 1px solid var(--ly-primary);
  z-index: 1000;
  transition: var(--ly-transition);
}

.ly-navbar.ly-scrolled {
  box-shadow: var(--ly-shadow);
}

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

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

.ly-logo img {
  height: 45px;
  width: auto;
}

.ly-logo-text {
  font-family: var(--ly-font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ly-primary);
}

.ly-logo-text span {
  color: var(--ly-accent);
}

.ly-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 5px;
}

.ly-nav-links li a {
  display: block;
  padding: 8px 14px;
  color: var(--ly-text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  border-radius: var(--ly-radius);
}

.ly-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--ly-accent);
  transition: var(--ly-transition);
}

.ly-nav-links li a:hover,
.ly-nav-links li a.ly-active {
  color: var(--ly-accent);
}

.ly-nav-links li a:hover::after,
.ly-nav-links li a.ly-active::after {
  width: 70%;
}

.ly-btn-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--ly-accent);
  color: var(--ly-white);
  border: none;
  border-radius: var(--ly-radius);
  font-family: var(--ly-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ly-transition);
  text-align: center;
}

.ly-btn-cta:hover {
  background: #c4925f;
  color: var(--ly-white);
  box-shadow: var(--ly-shadow);
}

/* --- 移动端菜单按钮 --- */
.ly-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.ly-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ly-primary);
  transition: var(--ly-transition);
}

/* --- Hero Banner --- */
.ly-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ly-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ly-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(46,64,52,0.5) 0%, rgba(46,64,52,0.3) 50%, rgba(46,64,52,0.6) 100%);
  z-index: 2;
}

.ly-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.ly-hero-content h1 {
  color: var(--ly-white);
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ly-hero-content h1 .ly-keyword-gold {
  color: var(--ly-accent);
  padding: 2px 12px;
  border: 2px solid var(--ly-accent);
  border-radius: var(--ly-radius);
}

.ly-hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 30px;
}

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

.ly-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ly-accent);
  color: var(--ly-white);
  border: 2px solid var(--ly-accent);
  border-radius: var(--ly-radius);
  font-family: var(--ly-font-title);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ly-transition);
}

.ly-btn-primary:hover {
  background: #c4925f;
  border-color: #c4925f;
  color: var(--ly-white);
  box-shadow: 0 4px 20px rgba(212,162,118,0.4);
}

.ly-btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--ly-accent);
  border: 2px solid var(--ly-accent);
  border-radius: var(--ly-radius);
  font-family: var(--ly-font-title);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ly-transition);
}

.ly-btn-outline:hover {
  background: var(--ly-accent);
  color: var(--ly-white);
}

/* --- 热门赛事横向滚动 --- */
.ly-hero-events {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.ly-hero-event-item {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--ly-radius);
  padding: 12px 20px;
  color: var(--ly-white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.ly-hero-event-item .ly-event-icon {
  font-size: 1.3rem;
}

/* --- 赛事卡片网格 --- */
.ly-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.ly-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ly-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.ly-event-card {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  overflow: hidden;
  transition: var(--ly-transition);
  border: 1px solid rgba(92,115,105,0.1);
}

.ly-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.ly-event-card-header {
  background: var(--ly-primary);
  color: var(--ly-white);
  padding: 12px 16px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ly-event-card-body {
  padding: 20px 16px;
  text-align: center;
}

.ly-event-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.ly-team-name {
  font-family: var(--ly-font-title);
  font-weight: 600;
  font-size: 1rem;
  max-width: 100px;
}

.ly-vs-badge {
  background: var(--ly-highlight);
  color: var(--ly-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.ly-odds-row {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.ly-odds-item {
  flex: 1;
  background: var(--ly-bg);
  border-radius: var(--ly-radius);
  padding: 8px 4px;
  text-align: center;
  cursor: pointer;
  transition: var(--ly-transition);
  border: 1px solid transparent;
}

.ly-odds-item:hover {
  border-color: var(--ly-accent);
  background: rgba(212,162,118,0.1);
}

.ly-odds-label {
  font-size: 0.75rem;
  color: var(--ly-text-light);
  display: block;
}

.ly-odds-value {
  font-weight: 700;
  color: var(--ly-primary);
  font-size: 1.05rem;
}

.ly-event-card .ly-btn-cta {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
}

/* --- 视频卡片 --- */
.ly-video-card {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  overflow: hidden;
  transition: var(--ly-transition);
}

.ly-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.ly-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.ly-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ly-video-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--ly-white);
  padding: 3px 8px;
  border-radius: var(--ly-radius);
  font-size: 0.8rem;
  z-index: 2;
}

.ly-video-card-info {
  padding: 16px;
}

.ly-video-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.ly-video-card-info p {
  color: var(--ly-text-light);
  font-size: 0.9rem;
}

/* --- 排行榜 --- */
.ly-ranking-section {
  background: var(--ly-white);
}

.ly-ranking-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.ly-ranking-left {
  flex: 0 0 300px;
}

.ly-ranking-tabs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.ly-ranking-tab {
  padding: 8px 24px;
  border: 2px solid var(--ly-secondary);
  border-radius: var(--ly-radius);
  background: transparent;
  color: var(--ly-secondary);
  font-family: var(--ly-font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--ly-transition);
}

.ly-ranking-tab.ly-active,
.ly-ranking-tab:hover {
  background: var(--ly-primary);
  border-color: var(--ly-primary);
  color: var(--ly-white);
}

.ly-ranking-right {
  flex: 1;
  background: var(--ly-bg);
  border-radius: var(--ly-radius);
  padding: 30px;
  border: 1px solid rgba(92,115,105,0.15);
}

.ly-ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.ly-ranking-table th {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 2px solid var(--ly-secondary);
  color: var(--ly-primary);
  font-family: var(--ly-font-title);
  font-size: 0.95rem;
}

.ly-ranking-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(92,115,105,0.1);
  font-size: 0.95rem;
}

.ly-ranking-table tr:hover {
  background: rgba(212,162,118,0.05);
}

.ly-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}

.ly-rank-gold { background: #FFD700; color: #333; }
.ly-rank-silver { background: #C0C0C0; color: #333; }
.ly-rank-bronze { background: #CD7F32; color: #fff; }
.ly-rank-normal { background: var(--ly-bg); color: var(--ly-text); }

.ly-win-rate {
  color: var(--ly-secondary);
  font-weight: 600;
}

/* --- 优惠活动卡片 --- */
.ly-promo-card {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  overflow: hidden;
  transition: var(--ly-transition);
  border: 1px solid rgba(92,115,105,0.1);
}

.ly-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.ly-promo-card-img {
  height: 180px;
  overflow: hidden;
}

.ly-promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ly-transition);
}

.ly-promo-card:hover .ly-promo-card-img img {
  transform: scale(1.05);
}

.ly-promo-card-body {
  padding: 20px;
}

.ly-promo-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ly-promo-card-body p {
  color: var(--ly-text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.ly-promo-tag {
  display: inline-block;
  background: rgba(168,76,76,0.1);
  color: var(--ly-highlight);
  padding: 3px 10px;
  border-radius: var(--ly-radius);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* --- 投注指南 --- */
.ly-guide-card {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  padding: 30px 25px;
  box-shadow: var(--ly-shadow);
  text-align: center;
  transition: var(--ly-transition);
  border: 1px solid rgba(92,115,105,0.1);
}

.ly-guide-card:hover {
  transform: translateY(-3px);
  border-color: var(--ly-accent);
}

.ly-guide-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.ly-guide-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.ly-guide-card p {
  color: var(--ly-text-light);
  font-size: 0.9rem;
}

/* --- 观赛茶馆 --- */
.ly-teahouse {
  background-size: cover;
  background-position: center;
  position: relative;
}

.ly-teahouse-overlay {
  background: rgba(46,64,52,0.85);
  padding: 80px 0;
}

.ly-teahouse .ly-section-title h2,
.ly-teahouse .ly-section-title p {
  color: var(--ly-white);
}

.ly-teahouse .ly-section-title h2::after {
  background: linear-gradient(90deg, transparent, var(--ly-accent), transparent);
}

.ly-live-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--ly-radius);
  padding: 30px;
  text-align: center;
  transition: var(--ly-transition);
}

.ly-live-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.ly-live-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.ly-live-card h3 {
  color: var(--ly-white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.ly-live-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.ly-live-card .ly-btn-outline {
  border-color: var(--ly-accent);
  color: var(--ly-accent);
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* --- 文章卡片 --- */
.ly-article-card {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  overflow: hidden;
  transition: var(--ly-transition);
}

.ly-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.ly-article-card-img {
  height: 200px;
  overflow: hidden;
}

.ly-article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ly-transition);
}

.ly-article-card:hover .ly-article-card-img img {
  transform: scale(1.05);
}

.ly-article-card-body {
  padding: 20px;
}

.ly-article-date {
  color: var(--ly-text-light);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.ly-article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ly-article-card-body p {
  color: var(--ly-text-light);
  font-size: 0.9rem;
}

.ly-read-more {
  display: inline-block;
  color: var(--ly-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* --- 锦鲤池（中奖滚动） --- */
.ly-koi-pool {
  background: linear-gradient(135deg, var(--ly-primary) 0%, var(--ly-secondary) 100%);
  padding: 60px 0;
  overflow: hidden;
}

.ly-koi-pool .ly-section-title h2,
.ly-koi-pool .ly-section-title p {
  color: var(--ly-white);
}

.ly-koi-pool .ly-section-title h2::after {
  background: linear-gradient(90deg, transparent, var(--ly-accent), transparent);
}

.ly-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.ly-marquee {
  display: flex;
  gap: 20px;
  animation: ly-scroll 30s linear infinite;
}

@keyframes ly-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ly-winner-item {
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--ly-radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.ly-winner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ly-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ly-white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ly-winner-info {
  color: var(--ly-white);
}

.ly-winner-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.ly-winner-amount {
  color: var(--ly-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.ly-winner-game {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* --- 合作伙伴 --- */
.ly-partners {
  background: var(--ly-white);
}

.ly-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ly-partner-item {
  background: var(--ly-bg);
  border-radius: var(--ly-radius);
  padding: 20px 30px;
  text-align: center;
  min-width: 150px;
  transition: var(--ly-transition);
  border: 1px solid rgba(92,115,105,0.1);
}

.ly-partner-item:hover {
  box-shadow: var(--ly-shadow);
}

.ly-partner-item .ly-partner-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.ly-partner-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--ly-text-light);
  font-weight: 500;
}

.ly-trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.ly-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ly-bg);
  border-radius: var(--ly-radius);
  border: 1px solid rgba(92,115,105,0.15);
}

.ly-trust-badge-icon {
  font-size: 1.5rem;
}

.ly-trust-badge-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ly-primary);
}

/* --- 页脚 --- */
.ly-footer {
  background: var(--ly-primary);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}

.ly-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.ly-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.ly-footer-social {
  display: flex;
  gap: 12px;
}

.ly-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--ly-white);
  transition: var(--ly-transition);
  font-size: 0.9rem;
}

.ly-footer-social a:hover {
  background: var(--ly-accent);
}

.ly-footer h4 {
  color: var(--ly-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.ly-footer-links {
  list-style: none;
}

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

.ly-footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--ly-transition);
}

.ly-footer-links a:hover {
  color: var(--ly-accent);
  padding-left: 5px;
}

.ly-footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ly-footer-seo {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 20px;
}

.ly-footer-seo p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ly-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.ly-footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}

/* --- 面包屑 --- */
.ly-breadcrumb {
  padding: 15px 0;
  margin-top: 70px;
}

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

.ly-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ly-breadcrumb-list li::after {
  content: '>';
  color: var(--ly-text-light);
}

.ly-breadcrumb-list li:last-child::after {
  display: none;
}

.ly-breadcrumb-list a {
  color: var(--ly-secondary);
}

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

/* --- 内页Banner --- */
.ly-page-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
}

.ly-page-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ly-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46,64,52,0.6);
}

.ly-page-banner-content {
  position: relative;
  z-index: 2;
}

.ly-page-banner-content h1 {
  color: var(--ly-white);
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ly-page-banner-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* --- 内页内容区 --- */
.ly-page-content {
  padding: 60px 0;
}

.ly-page-content article {
  max-width: 900px;
  margin: 0 auto;
}

.ly-page-content article h2 {
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(92,115,105,0.15);
}

.ly-page-content article h3 {
  margin-top: 30px;
}

.ly-page-content article img {
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  margin: 25px 0;
}

.ly-page-content article blockquote {
  border-left: 4px solid var(--ly-accent);
  padding: 15px 20px;
  margin: 25px 0;
  background: rgba(212,162,118,0.08);
  border-radius: 0 var(--ly-radius) var(--ly-radius) 0;
  font-style: italic;
  color: var(--ly-secondary);
}

/* --- 多赛事投注厅 --- */
.ly-betting-layout {
  display: grid;
  grid-template-columns: 240px 1fr 300px;
  gap: 25px;
  margin-top: 30px;
}

.ly-filter-panel {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  padding: 20px;
}

.ly-filter-group {
  margin-bottom: 20px;
}

.ly-filter-group h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(92,115,105,0.15);
}

.ly-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ly-text);
  transition: var(--ly-transition);
}

.ly-filter-item:hover {
  color: var(--ly-accent);
}

.ly-filter-item.ly-active {
  color: var(--ly-accent);
  font-weight: 600;
}

.ly-match-list {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
}

.ly-match-header {
  background: var(--ly-primary);
  color: var(--ly-white);
  padding: 15px 20px;
  border-radius: var(--ly-radius) var(--ly-radius) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ly-match-row {
  display: grid;
  grid-template-columns: 100px 1fr 200px 120px;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(92,115,105,0.08);
  transition: var(--ly-transition);
}

.ly-match-row:hover {
  background: rgba(212,162,118,0.05);
}

.ly-match-time {
  font-size: 0.85rem;
  color: var(--ly-text-light);
}

.ly-match-teams-inline {
  font-weight: 600;
}

.ly-match-odds-inline {
  display: flex;
  gap: 8px;
}

.ly-match-odds-inline .ly-odds-btn {
  padding: 6px 12px;
  background: var(--ly-bg);
  border: 1px solid rgba(92,115,105,0.15);
  border-radius: var(--ly-radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ly-primary);
  transition: var(--ly-transition);
}

.ly-match-odds-inline .ly-odds-btn:hover {
  background: var(--ly-accent);
  color: var(--ly-white);
  border-color: var(--ly-accent);
}

.ly-match-league {
  font-size: 0.85rem;
  color: var(--ly-secondary);
}

/* --- 投注单 --- */
.ly-bet-slip {
  background: var(--ly-white);
  border-radius: var(--ly-radius);
  box-shadow: var(--ly-shadow);
  position: sticky;
  top: 90px;
}

.ly-bet-slip-header {
  background: var(--ly-accent);
  color: var(--ly-white);
  padding: 15px 20px;
  border-radius: var(--ly-radius) var(--ly-radius) 0 0;
  font-family: var(--ly-font-title);
  font-weight: 600;
}

.ly-bet-slip-body {
  padding: 20px;
}

.ly-bet-slip-empty {
  text-align: center;
  padding: 30px 0;
  color: var(--ly-text-light);
  font-size: 0.9rem;
}

.ly-bet-slip-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.ly-bet-slip-tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--ly-secondary);
  border-radius: var(--ly-radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--ly-transition);
  background: transparent;
  color: var(--ly-secondary);
}

.ly-bet-slip-tab.ly-active {
  background: var(--ly-primary);
  border-color: var(--ly-primary);
  color: var(--ly-white);
}

/* --- APP下载 --- */
.ly-app-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ly-app-preview {
  flex: 0 0 350px;
}

.ly-app-preview img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.ly-app-info {
  flex: 1;
}

.ly-app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.ly-app-feature {
  text-align: center;
  padding: 20px;
  background: var(--ly-bg);
  border-radius: var(--ly-radius);
}

.ly-app-feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.ly-app-feature h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.ly-app-feature p {
  font-size: 0.85rem;
  color: var(--ly-text-light);
}

.ly-download-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.ly-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--ly-radius);
  font-weight: 600;
  transition: var(--ly-transition);
}

.ly-download-btn-ios {
  background: var(--ly-primary);
  color: var(--ly-white);
}

.ly-download-btn-android {
  background: var(--ly-secondary);
  color: var(--ly-white);
}

.ly-download-btn-apk {
  background: var(--ly-accent);
  color: var(--ly-white);
}

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

/* --- 内链样式 --- */
.ly-internal-link {
  color: var(--ly-accent);
  border-bottom: 1px dashed var(--ly-accent);
  transition: var(--ly-transition);
}

.ly-internal-link:hover {
  color: var(--ly-primary);
  border-bottom-color: var(--ly-primary);
}

/* --- 回到顶部 --- */
.ly-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--ly-accent);
  color: var(--ly-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--ly-transition);
  box-shadow: var(--ly-shadow);
}

.ly-back-to-top:hover {
  background: var(--ly-primary);
  transform: translateY(-3px);
}

.ly-back-to-top.ly-visible {
  display: flex;
}
