.page-home{
  --home-section-space: clamp(3.5rem, 8vw, 6.5rem);
  --home-hero-pad: clamp(2rem, 5vw, 4rem);
  background: var(--c-white);
  color: var(--c-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .section-block{
  padding: var(--home-section-space) 0;
}

.page-home .section-head{
  margin-bottom: 2rem;
  display: grid;
  gap: .5rem;
}

.page-home .section-head__desc{
  margin: 0;
  font-size: 1rem;
  color: var(--c-dark);
  opacity: .82;
  max-width: 46rem;
  line-height: 1.7;
}

.page-home .section-title{
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--c-dark);
  margin: 0;
}

.page-home .section-label{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-red);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
}

.page-home .section-label--light{
  color: var(--c-gold);
}

.page-home .section-label__index{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-data);
  font-size: .75rem;
  font-style: normal;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 68% 100%, 0 100%);
  padding-right: .2rem;
}

.page-home .image-clip{
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

/* ===== 首屏框景 ===== */
.page-home .hero-frame{
  position: relative;
  background: linear-gradient(118deg, var(--c-red-dark) 0%, var(--c-red) 48%, var(--c-orange) 130%);
  color: var(--c-white);
  overflow: hidden;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: var(--home-hero-pad);
}

.page-home .hero-frame__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
  pointer-events: none;
}

.page-home .hero-frame__inner{
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
}

.page-home .hero-corner{
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-color: var(--c-gold);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.page-home .hero-corner--tl{
  top: 1.25rem;
  left: 1.25rem;
  border-width: 4px 0 0 4px;
}

.page-home .hero-corner--tr{
  top: 1.25rem;
  right: 1.25rem;
  border-width: 4px 4px 0 0;
}

.page-home .hero-corner--bl{
  bottom: 1.25rem;
  left: 1.25rem;
  border-width: 0 0 4px 4px;
}

.page-home .hero-corner--br{
  bottom: 1.25rem;
  right: 1.25rem;
  border-width: 0 4px 4px 0;
}

.page-home .breadcrumb{
  display: flex;
  gap: .4rem;
  align-items: center;
  font-size: .8125rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
}

.page-home .breadcrumb a{
  color: var(--c-gold);
  text-decoration: none;
}

.page-home .breadcrumb a:hover{
  text-decoration: underline;
}

.page-home .hero-content{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}

.page-home .hero-copy{
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.page-home .hero-copy h1{
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--c-white);
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.18);
}

.page-home .hero-version{
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-red-dark);
  font-family: var(--font-data);
  font-size: .5em;
  font-style: normal;
  font-weight: 800;
  padding: .2em .5em .15em;
  margin-left: .25em;
  transform: translateY(-.1em);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 82% 100%, 0 100%);
}

.page-home .hero-lead{
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,.94);
  margin: 0;
  max-width: 38rem;
}

.page-home .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: .5rem;
}

.page-home .hero-board{
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  position: relative;
  transform: rotate(.6deg);
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}

.page-home .hero-board::before{
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  width: 64px;
  height: 10px;
  background: var(--c-gold);
  transform: skewX(-18deg);
}

.page-home .hero-board__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.page-home .hero-board__title{
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
}

.page-home .hero-board__live{
  background: var(--c-gold);
  color: var(--c-red-dark);
  font-family: var(--font-data);
  font-size: .75rem;
  font-weight: 800;
  padding: .25rem .5rem;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 88% 100%, 0 100%);
}

.page-home .hero-board__block{
  display: grid;
  gap: .5rem;
}

.page-home .hero-board__label{
  margin: 0;
  font-weight: 800;
  font-size: .875rem;
  color: var(--c-gold);
}

.page-home .hero-board__label a{
  color: inherit;
  text-decoration: none;
}

.page-home .hero-board__label a:hover{
  color: var(--c-white);
}

.page-home .hero-board__mini{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.page-home .hero-board__mini li{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.9);
}

.page-home .hero-board__mini b{
  font-family: var(--font-data);
  color: var(--c-white);
  margin-left: auto;
}

.page-home .mini-rank{
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-data);
  font-size: .75rem;
  font-weight: 800;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 68% 100%, 0 100%);
}

.page-home .mini-unit{
  font-family: var(--font-data);
  font-size: .75rem;
  color: rgba(255,255,255,.65);
}

.page-home .hero-stats{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1.5rem;
}

.page-home .hero-stat{
  background: rgba(179,0,14,.32);
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--c-gold);
}

.page-home .hero-stat dt{
  font-family: var(--font-data);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--c-white);
  display: flex;
  align-items: baseline;
  gap: .25rem;
}

.page-home .hero-stat .stat-num{
  color: var(--c-gold);
  font-size: 1.4em;
}

.page-home .hero-stat dd{
  margin: .3rem 0 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.8);
}

/* ===== 积分榜 ===== */
.page-home .standings-section{
  background: var(--c-white);
  position: relative;
}

.page-home .standings-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-home .league-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
  position: relative;
}

.page-home .league-radio{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .league-tab{
  padding: .55rem 1rem;
  background: var(--c-light);
  border: 1px solid #e3e3e3;
  border-top: 3px solid transparent;
  font-weight: 800;
  font-size: .875rem;
  color: var(--c-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  user-select: none;
}

.page-home .league-tab:hover{
  background: var(--c-white);
  color: var(--c-red);
}

.page-home .league-radio:checked + .league-tab{
  background: var(--c-white);
  border-top-color: var(--c-red);
  border-left-color: var(--c-red);
  border-right-color: var(--c-red);
  color: var(--c-red);
  box-shadow: inset 0 -3px 0 var(--c-orange);
}

.page-home .league-panel{
  display: none;
  overflow-x: auto;
  animation: home-league-in .32s ease;
}

.page-home #league-epl:checked ~ .league-panel--epl,
.page-home #league-laliga:checked ~ .league-panel--laliga,
.page-home #league-bundesliga:checked ~ .league-panel--bundesliga,
.page-home #league-seriea:checked ~ .league-panel--seriea,
.page-home #league-ligue1:checked ~ .league-panel--ligue1,
.page-home #league-ucl:checked ~ .league-panel--ucl{
  display: block;
}

@keyframes home-league-in{
  from{ opacity:.3; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

.page-home .league-panel__meta{
  margin: 0 0 .75rem;
  font-family: var(--font-data);
  font-size: .85rem;
  color: var(--c-dark);
  background: var(--c-light);
  display: inline-block;
  padding: .35rem .75rem;
  border-left: 4px solid var(--c-orange);
}

.page-home .standings-table{
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--c-white);
  box-shadow: var(--shadow-card);
  font-family: var(--font-data);
  font-size: .875rem;
}

.page-home .standings-table th{
  background: var(--c-light);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .8125rem;
  text-align: center;
  padding: .85rem .5rem;
  border-bottom: 3px solid var(--c-red);
  white-space: nowrap;
}

.page-home .standings-table th:nth-child(2){
  text-align: left;
}

.page-home .standings-table td{
  padding: .75rem .5rem;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}

.page-home .standings-table tbody tr{
  transition: background .18s ease;
}

.page-home .standings-table tbody tr:hover{
  background: #fff6f3;
}

.page-home .standings-table tbody tr:first-child td{
  background: rgba(230,0,18,.06);
}

.page-home .standings-table tbody tr:first-child .points{
  background: var(--c-red);
  color: var(--c-white);
}

.page-home .standings-table .points{
  font-weight: 800;
  color: var(--c-red);
  font-size: 1rem;
  padding: .15rem .45rem;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 88% 100%, 0 100%);
}

.page-home .table-team-cell{
  text-align: left;
}

.page-home .table-team-name{
  font-family: var(--font-body);
  font-weight: 700;
}

.page-home .team-dot{
  display: inline-block;
  width: .6rem;
  height: .6rem;
  background: var(--c-orange);
  margin-right: .4rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 65%);
}

.page-home .standings-side{
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.page-home .standings-img,
.page-home .injury-img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  box-shadow: var(--shadow-card);
}

.page-home .standings-side{
  position: relative;
}

.page-home .standings-facts{
  background: var(--c-white);
  border: 1px solid #eee;
  box-shadow: var(--shadow-hover);
  padding: 1.5rem;
  margin-top: -2.5rem;
  margin-left: auto;
  width: calc(100% - 1.5rem);
  position: relative;
  z-index: 2;
}

.page-home .standings-facts h3,
.page-home .injury-coverage h3,
.page-home .update-quick-card h3{
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  margin: 0 0 .85rem;
  color: var(--c-dark);
}

.page-home .standings-facts ul,
.page-home .injury-coverage ul,
.page-home .update-quick-card ul{
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: .6rem;
  font-size: .9rem;
  line-height: 1.5;
}

.page-home .standings-facts li,
.page-home .injury-coverage li,
.page-home .update-quick-card li{
  position: relative;
  padding-left: 1.2rem;
}

.page-home .standings-facts li::before,
.page-home .injury-coverage li::before,
.page-home .update-quick-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .55rem;
  height: .55rem;
  background: var(--c-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 65%);
}

.page-home .standings-facts .btn,
.page-home .injury-coverage .btn,
.page-home .update-quick-card .btn{
  margin-top: .5rem;
}

/* ===== 伤停 ===== */
.page-home .injury-section{
  background: var(--c-light);
  position: relative;
  overflow: hidden;
}

.page-home .injury-section::before{
  content: "";
  position: absolute;
  top: 0;
  right: -2rem;
  width: 220px;
  height: 100%;
  background: repeating-linear-gradient(115deg, rgba(230,0,18,.045) 0 2px, transparent 2px 20px);
  pointer-events: none;
}

.page-home .injury-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-home .injury-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
}

.page-home .injury-card{
  perspective: 1400px;
  height: 258px;
}

.page-home .injury-card__inner{
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .65, .3, 1);
}

.page-home .injury-card:hover .injury-card__inner{
  transform: rotateY(180deg);
}

.page-home .injury-card__face{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.page-home .injury-card__front{
  background: var(--c-white);
  border-top: 4px solid var(--c-orange);
}

.page-home .injury-card__back{
  background: linear-gradient(135deg, var(--c-red-dark) 0%, var(--c-red) 70%, var(--c-orange) 130%);
  color: var(--c-white);
  transform: rotateY(180deg);
  border-top: 4px solid var(--c-gold);
}

.page-home .injury-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.page-home .injury-card__team{
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-dark);
}

.page-home .injury-card__status{
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-data);
  font-size: .75rem;
  font-weight: 800;
  padding: .2rem .5rem;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 88% 100%, 0 100%);
}

.page-home .injury-card__pos{
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: var(--c-red);
}

.page-home .injury-card__hint{
  font-size: .8125rem;
  color: #aaa;
  margin: 0;
}

.page-home .injury-card__reason{
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 0 .75rem;
  color: var(--c-white);
}

.page-home .injury-card__return,
.page-home .injury-card__miss{
  margin: .3rem 0 0;
  font-family: var(--font-data);
  font-size: .875rem;
  color: rgba(255,255,255,.92);
}

.page-home .injury-tip{
  margin: 1.25rem 0 0;
  font-size: .875rem;
  color: rgba(51,51,51,.72);
  background: rgba(230,0,18,.06);
  padding: .75rem 1rem;
  border-left: 4px solid var(--c-orange);
}

.page-home .injury-side{
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.page-home .injury-coverage{
  background: var(--c-white);
  padding: 1.5rem;
  border: 1px solid #eee;
  box-shadow: var(--shadow-card);
  position: relative;
}

/* ===== iOS 入口 ===== */
.page-home .ios-section{
  background: linear-gradient(118deg, var(--c-dark) 0%, #1c1c1c 42%, #26201f 100%);
  color: var(--c-white);
  padding: var(--home-section-space) 0;
  position: relative;
  overflow: hidden;
}

.page-home .ios-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-red) 0%, var(--c-orange) 55%, var(--c-gold) 100%);
}

.page-home .ios-section::after{
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 340px;
  height: 340px;
  border: 42px solid rgba(230,0,18,.2);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .ios-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .ios-visual{
  margin: 0;
  display: grid;
  gap: .75rem;
  justify-items: center;
}

.page-home .ios-device{
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.35));
}

.page-home .ios-visual figcaption{
  font-family: var(--font-data);
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
}

.page-home .ios-content{
  display: grid;
  gap: 1.5rem;
}

.page-home .ios-content .section-title{
  color: var(--c-white);
}

.page-home .ios-content .section-head__desc{
  color: rgba(255,255,255,.78);
}

.page-home .ios-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: iosStep;
  display: grid;
  gap: .85rem;
}

.page-home .ios-steps li{
  counter-increment: iosStep;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: .9rem 1.1rem;
  line-height: 1.6;
  font-size: .9375rem;
}

.page-home .ios-steps li::before{
  content: counter(iosStep, decimal-leading-zero);
  font-family: var(--font-data);
  font-weight: 800;
  color: var(--c-gold);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.page-home .ios-features{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.page-home .ios-features span{
  background: var(--c-red);
  color: var(--c-white);
  font-size: .8125rem;
  font-weight: 800;
  padding: .4rem .8rem;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 88% 100%, 0 100%);
}

/* ===== 最新动态 ===== */
.page-home .update-section{
  background: var(--c-white);
}

.page-home .update-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-home .update-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 2px solid var(--c-light);
}

.page-home .update-item{
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.15rem .25rem;
  border-bottom: 1px solid #ececec;
  transition: background .2s ease, padding-left .2s ease;
}

.page-home .update-item:hover{
  background: #fff9f8;
  padding-left: .75rem;
}

.page-home .update-tag{
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: .7rem;
  font-weight: 800;
  color: var(--c-dark);
  background: var(--c-light);
  padding: .28rem .6rem;
  border-left: 3px solid var(--c-orange);
  letter-spacing: .04em;
  margin-top: .2rem;
}

.page-home .update-tag--standings{
  border-left-color: var(--c-red);
}

.page-home .update-tag--injury{
  border-left-color: var(--c-orange);
}

.page-home .update-tag--topic{
  border-left-color: var(--c-gold);
}

.page-home .update-tag--product{
  border-left-color: var(--c-dark);
}

.page-home .update-link{
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--c-dark);
  text-decoration: none;
}

.page-home .update-link:hover{
  color: var(--c-red);
  text-decoration: underline;
}

.page-home .update-aside{
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.page-home .update-quick-card{
  background: var(--c-light);
  padding: 1.5rem;
}

.page-home .update-quick-card ul{
  margin-bottom: 0;
}

.page-home .update-quick-card a{
  color: var(--c-dark);
  font-weight: 600;
  text-decoration: none;
}

.page-home .update-quick-card a:hover{
  color: var(--c-red);
  text-decoration: underline;
}

/* ===== 页面目录 ===== */
.page-home .page-spy{
  display: none;
}

@media (min-width: 1200px){
  .page-home .page-spy{
    display: flex;
    flex-direction: column;
    gap: .4rem;
    position: fixed;
    right: 1.25rem;
    bottom: 7rem;
    z-index: 900;
    padding: .75rem .5rem;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border: 1px solid #eee;
    box-shadow: var(--shadow-card);
  }

  .page-home .page-spy a{
    font-size: .75rem;
    font-weight: 800;
    color: var(--c-dark);
    text-decoration: none;
    padding: .35rem .8rem;
    border-left: 3px solid transparent;
    transition: color .2s ease, border-color .2s ease;
  }

  .page-home .page-spy a:hover{
    border-left-color: var(--c-orange);
    color: var(--c-red);
  }
}

/* ===== 桌面端布局 ===== */
@media (min-width: 960px){
  .page-home .hero-frame__inner{
    gap: 2.5rem;
  }

  .page-home .hero-content{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 3rem;
  }

  .page-home .hero-board{
    padding: 1.75rem;
    transform: rotate(1.2deg) translateY(0);
  }

  .page-home .hero-stats{
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .standings-layout{
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
    gap: 2.5rem;
  }

  .page-home .injury-layout{
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
    gap: 2.5rem;
  }

  .page-home .ios-layout{
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
  }

  .page-home .ios-device{
    max-width: 260px;
  }

  .page-home .update-layout{
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
  }
}

@media (min-width: 768px){
  .page-home .hero-stats{
    gap: 1.25rem;
  }

  .page-home .injury-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
