.page-home{
  --home-card-bg: #FFFCF5;
  --home-gold-glow: rgba(212,175,55,0.22);
  --home-grid-line: rgba(192,192,192,0.18);
  --home-green-mid: #144A35;
  background: var(--color-cream);
  color: var(--color-deep-black);
  overflow-x: hidden;
  display: block;
}

.page-home .home-breadcrumb{
  background: var(--color-cream);
  border-bottom: var(--border-thin);
  padding: 14px 0;
}

.page-home .home-breadcrumb .breadcrumb-list{
  margin: 0;
}

.page-home .home-hero{
  position: relative;
  padding: 40px 0 48px;
  background: var(--color-deep-green);
  background-image:
    linear-gradient(rgba(192,192,192,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,192,192,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--color-cream);
  overflow: hidden;
}

.page-home .home-hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.page-home .home-hero-copy{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-hero-kicker{
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-rice-gold);
  text-transform: uppercase;
  border-left: 2px solid var(--color-gold);
  padding-left: 12px;
  margin: 0;
}

.page-home .hero-kicker-index{
  color: var(--color-gold);
  margin-right: 8px;
}

.page-home .home-hero-title{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.26;
  color: var(--color-cream);
  margin: 0;
  letter-spacing: 0.01em;
}

.page-home .home-hero-lead,
.page-home .home-hero-sub{
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245,240,230,0.88);
  margin: 0;
}

.page-home .home-hero-lead strong{
  color: var(--color-gold);
  font-weight: 700;
}

.page-home .home-hero-sub{
  color: rgba(245,240,230,0.74);
  font-size: 14px;
}

.page-home .home-hero-trust{
  font-family: var(--font-number);
  font-size: 13px;
  color: rgba(245,240,230,0.62);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.page-home .home-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-home .home-hero-actions .btn{
  min-width: 148px;
  text-align: center;
}

.page-home .home-hero-visual{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-hero-figure{
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}

.page-home .home-hero-img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-hero-svg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 92%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4));
}

.page-home .hero-scoreboard{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  background: rgba(11,61,46,0.92);
  border: 1px solid rgba(212,175,55,0.55);
  border-radius: 6px;
  padding: 12px 8px;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.page-home .hero-scoreboard-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.page-home .hero-scoreboard-value{
  font-size: 24px;
  line-height: 1;
}

.page-home .hero-scoreboard-label{
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245,240,230,0.62);
  white-space: nowrap;
}

.page-home .league-section,
.page-home .standing-section,
.page-home .update-section{
  padding: 52px 0 44px;
  background: var(--color-cream);
}

.page-home .league-intro,
.page-home .match-intro{
  font-size: 15px;
  line-height: 1.72;
  margin: 18px 0 24px;
  max-width: 720px;
}

.page-home .keyword-light{
  color: var(--color-deep-green);
  font-weight: 700;
}

.page-home .keyword-dark{
  color: var(--color-dark-red);
  font-weight: 700;
}

.page-home .league-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .league-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: var(--home-card-bg);
  border: 1px solid rgba(192,192,192,0.5);
  border-radius: 8px;
  padding: 18px 18px 16px 20px;
  text-decoration: none;
  color: var(--color-deep-black);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-home .league-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--color-gold);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.page-home .league-card:hover,
.page-home .league-card:focus{
  border-color: var(--color-gold);
  box-shadow: 0 6px 24px var(--home-gold-glow);
  transform: translateY(-2px);
}

.page-home .league-card:hover::before,
.page-home .league-card:focus::before{
  opacity: 1;
}

.page-home .league-card-top{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .league-rank{
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-deep-green);
}

.page-home .league-name{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  flex: 1;
}

.page-home .league-card-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px dashed rgba(192,192,192,0.65);
  padding-top: 10px;
}

.page-home .league-meta{
  font-size: 13px;
  color: rgba(26,26,26,0.72);
  line-height: 1.5;
}

.page-home .league-arrow{
  font-family: var(--font-number);
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 700;
}

.page-home .league-cta{
  margin-top: 28px;
  text-align: center;
}

.page-home .match-section{
  padding: 52px 0 48px;
  background: var(--color-deep-green);
  background-image:
    linear-gradient(rgba(192,192,192,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,192,192,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--color-cream);
}

.page-home .match-section .section-title,
.page-home .temp-section .section-title{
  color: var(--color-cream);
}

.page-home .match-section .section-index,
.page-home .temp-section .section-index{
  color: var(--color-gold);
}

.page-home .match-section .section-line,
.page-home .temp-section .section-line{
  border-color: rgba(212,175,55,0.4);
}

.page-home .match-intro{
  color: rgba(245,240,230,0.85);
}

.page-home .match-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-home .match-visual{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .match-visual figure{
  margin: 0;
}

.page-home .match-visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .match-visual-note{
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245,240,230,0.58);
  text-align: right;
  margin: 0;
}

.page-home .match-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .match-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(192,192,192,0.28);
  border-radius: 8px;
  padding: 16px 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-home .match-card:hover,
.page-home .match-card:focus-within{
  border-color: rgba(212,175,55,0.72);
  background: rgba(255,255,255,0.09);
}

.page-home .match-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.page-home .match-league{
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-rice-gold);
}

.page-home .match-card-body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0 10px;
}

.page-home .match-team{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.page-home .match-team-name{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-cream);
}

.page-home .match-team-side{
  font-size: 12px;
  color: rgba(245,240,230,0.5);
}

.page-home .match-score{
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-gold);
  white-space: nowrap;
}

.page-home .match-card-foot{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px dashed rgba(192,192,192,0.3);
  padding-top: 10px;
}

.page-home .match-card .tag{
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.42);
  color: var(--color-rice-gold);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.page-home .match-card .tag-alert{
  background: rgba(139,0,0,0.3);
  border-color: rgba(139,0,0,0.55);
  color: #FFC2C2;
}

.page-home .match-card .tag-success{
  background: rgba(46,125,81,0.26);
  border-color: rgba(46,125,81,0.62);
  color: #9BE0B2;
}

.page-home .match-more{
  align-self: flex-start;
}

.page-home .standing-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 24px;
}

.page-home .standing-visual figure{
  margin: 0;
}

.page-home .standing-visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .standing-panel{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .standing-quote{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--color-deep-green);
  margin: 0;
}

.page-home .standing-text{
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.page-home .standing-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .standing-row{
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(192,192,192,0.45);
  padding: 10px 4px;
}

.page-home .standing-row:last-child{
  border-bottom: 0;
}

.page-home .standing-rank{
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-gold);
}

.page-home .standing-name{
  flex: 1;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-deep-black);
}

.page-home .standing-panel .btn{
  align-self: flex-start;
  margin-top: 8px;
}

.page-home .temp-section{
  padding: 48px 0 52px;
  background: linear-gradient(135deg, var(--color-deep-green) 0%, var(--color-footer-bg) 100%);
  color: var(--color-cream);
}

.page-home .temp-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .temp-visual figure{
  margin: 0;
}

.page-home .temp-visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .temp-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .temp-content .section-head{
  width: 100%;
  margin-bottom: 0;
}

.page-home .temp-content p{
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245,240,230,0.85);
  margin: 0;
}

.page-home .temp-points{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .temp-points li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,240,230,0.9);
}

.page-home .temp-point-num{
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 3px;
  padding: 2px 7px;
}

.page-home .temp-content .btn{
  align-self: flex-start;
}

.page-home .update-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.page-home .update-card{
  background: var(--home-card-bg);
  border: 1px solid rgba(192,192,192,0.5);
  border-radius: 8px;
  padding: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-home .update-card:hover,
.page-home .update-card:focus-within{
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.page-home .update-index{
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(26,26,26,0.4);
  display: block;
  margin-bottom: 10px;
}

.page-home .update-card-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin: 8px 0 6px;
  color: var(--color-deep-black);
}

.page-home .update-card-text{
  font-size: 14px;
  line-height: 1.62;
  color: rgba(26,26,26,0.76);
  margin: 0;
}

.page-home .update-footer{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

@media (min-width: 768px){
  .page-home .home-hero{
    padding: 56px 0 64px;
  }

  .page-home .home-hero-inner{
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-hero-title{
    font-size: 38px;
  }

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

  .page-home .match-layout{
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .page-home .standing-layout{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .page-home .temp-layout{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

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

@media (min-width: 1024px){
  .page-home .home-hero{
    padding: 72px 0 88px;
  }

  .page-home .home-hero-title{
    font-size: 44px;
  }

  .page-home .hero-scoreboard{
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 10px;
  }

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

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

  .page-home .league-section,
  .page-home .standing-section,
  .page-home .update-section{
    padding: 72px 0 64px;
  }

  .page-home .match-section{
    padding: 72px 0 64px;
  }

  .page-home .temp-section{
    padding: 64px 0 72px;
  }
}
