.page-home {
  --h-blue: #00C2FF;
  --h-purple: #7A5CFF;
  --h-orange: #FF6D2B;
  --h-silver: #F4F4F8;
  --h-gray: #A6A6C2;
  --h-line: rgba(255,255,255,0.14);
  --h-glass: rgba(255,255,255,0.08);
  --h-ease: cubic-bezier(0.2,0.8,0.2,1);
  background: #0A0A14;
  color: var(--h-silver);
  overflow-x: hidden;
}
.page-home img {
  max-width: 100%;
  height: auto;
}
.page-home .section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--h-blue);
}
.page-home .section-index {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--h-blue);
  text-transform: uppercase;
}
.page-home .section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--h-silver);
  letter-spacing: -0.01em;
  margin: 0;
}
.page-home .section-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--h-gray);
  max-width: 760px;
  margin: 0;
}
.page-home .data-note {
  font-size: 13px;
  color: var(--h-gray);
  line-height: 1.7;
  margin: 12px 0;
}
.page-home .chip {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--h-blue);
  border: 1px solid rgba(0,194,255,0.4);
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(0,194,255,0.08);
}
.page-home .glass-panel {
  background: var(--h-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s var(--h-ease), background 0.2s var(--h-ease), color 0.2s var(--h-ease), transform 0.2s var(--h-ease);
  cursor: pointer;
}
.page-home .btn-primary {
  background: var(--h-orange);
  color: #0A0A14;
  border: 1px solid transparent;
}
.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  background: #FF8B4D;
  color: #0A0A14;
  transform: translateY(-2px);
}
.page-home .btn-ghost {
  background: transparent;
  color: var(--h-blue);
  border: 1px solid rgba(0,194,255,0.5);
}
.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  background: rgba(0,194,255,0.1);
  border-color: var(--h-blue);
  transform: translateY(-2px);
}

.page-home .home-intro {
  position: relative;
  padding: 32px 0 56px;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-home .home-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 340px;
  height: 260px;
  background: radial-gradient(circle at 100% 100%, rgba(122,92,255,0.12), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.page-home .home-intro .page-container {
  position: relative;
  z-index: 1;
}
.page-home .intro-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}
.page-home .intro-coord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--h-gray);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.page-home .intro-title {
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--h-silver);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.12em;
}
.page-home .intro-brand {
  color: var(--h-silver);
}
.page-home .intro-divider {
  color: var(--h-blue);
}
.page-home .intro-tagline {
  display: block;
  width: 100%;
  color: var(--h-blue);
  font-size: 0.78em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.page-home .intro-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--h-gray);
  max-width: 680px;
  margin-bottom: 24px;
}
.page-home .intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .intro-panel {
  padding: 20px;
  border: 1px solid var(--h-line);
  position: relative;
  align-self: start;
}
.page-home .intro-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--h-line);
  margin-bottom: 12px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--h-gray);
}
.page-home .panel-coord {
  color: var(--h-blue);
}
.page-home .intro-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .intro-list li + li {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.page-home .intro-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 6px;
  color: var(--h-silver);
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s var(--h-ease), color 0.2s var(--h-ease);
}
.page-home .intro-list a:hover,
.page-home .intro-list a:focus-visible {
  background: rgba(0,194,255,0.08);
  color: var(--h-blue);
}
.page-home .idx {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--h-blue);
  opacity: 0.6;
}
.page-home .intro-list a:hover .idx,
.page-home .intro-list a:focus-visible .idx {
  opacity: 1;
  color: var(--h-orange);
}
.page-home .intro-orbit {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 140px;
  height: 140px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.page-home .home-league {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(10,10,20,1) 40%);
}
.page-home .home-league::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 75%, rgba(122,92,255,0.07) 75%);
  pointer-events: none;
}
.page-home .home-league .page-container {
  position: relative;
  z-index: 1;
}
.page-home .league-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.page-home .league-status-text {
  font-size: 13px;
  color: var(--h-gray);
  margin: 0;
}
.page-home .league-grid {
  display: grid;
  gap: 24px;
}
.page-home .league-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--h-line);
  background: rgba(19,18,38,0.6);
  transition: border-color 0.25s var(--h-ease), transform 0.25s var(--h-ease);
}
.page-home .league-card:hover,
.page-home .league-card:focus-within {
  border-color: rgba(0,194,255,0.55);
  transform: translateY(-4px);
}
.page-home .league-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/1;
  min-height: 160px;
}
.page-home .league-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--h-ease);
}
.page-home .league-card:hover .league-img {
  transform: scale(1.03);
}
.page-home .league-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
}
.page-home .league-cover-data {
  background: linear-gradient(135deg, #1B1640, #0A0A14);
  aspect-ratio: 2/1;
  min-height: 160px;
  display: flex;
  align-items: center;
  padding: 24px;
}
.page-home .data-brief {
  width: 100%;
}
.page-home .data-brief-line {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--h-silver);
}
.page-home .data-brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .data-brief-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  color: var(--h-gray);
}
.page-home .data-brief-list li span:first-child {
  color: var(--h-blue);
}
.page-home .league-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.page-home .league-no {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--h-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .league-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: var(--h-silver);
}
.page-home .league-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--h-gray);
  margin: 0;
}
.page-home .league-link {
  margin-top: auto;
  color: var(--h-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--h-ease);
}
.page-home .league-link:hover,
.page-home .league-link:focus-visible {
  gap: 10px;
  color: var(--h-blue);
}

.page-home .home-database {
  padding: 64px 0;
  background: rgba(10,10,20,1);
  position: relative;
}
.page-home .database-grid {
  display: grid;
  gap: 32px;
}
.page-home .database-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(59,45,110,0.5), rgba(10,10,20,0.8));
  border: 1px solid var(--h-line);
  border-radius: 8px;
}
.page-home .db-stat {
  text-align: center;
  padding: 8px 4px;
}
.page-home .db-num {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--h-blue);
  line-height: 1.2;
}
.page-home .db-label {
  font-size: 12px;
  color: var(--h-gray);
  margin-top: 4px;
  display: block;
}
.page-home .db-fields {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .db-fields li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--h-silver);
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--h-purple);
}
.page-home .field-code {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--h-purple);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 70px;
}
.page-home .db-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
}
.page-home .db-filter-label {
  font-size: 13px;
  color: var(--h-gray);
  margin-right: 4px;
}
.page-home .database-side-img {
  border: 1px solid var(--h-line);
  border-radius: 8px;
  overflow: hidden;
}
.page-home .database-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .database-link {
  color: var(--h-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
  transition: color 0.2s var(--h-ease), padding-left 0.2s var(--h-ease);
}
.page-home .database-link:hover,
.page-home .database-link:focus-visible {
  color: var(--h-orange);
  padding-left: 4px;
}

.page-home .home-schedule {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(19,18,38,0.9), rgba(10,10,20,1));
  position: relative;
}
.page-home .schedule-table {
  border: 1px solid var(--h-line);
  border-radius: 8px;
  overflow: hidden;
}
.page-home .schedule-row {
  display: grid;
  grid-template-columns: 72px 1fr 110px 70px;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.page-home .schedule-row:not(.schedule-th) {
  font-family: var(--font-data);
  transition: background 0.2s var(--h-ease);
}
.page-home .schedule-row:not(.schedule-th):hover {
  background: rgba(122,92,255,0.08);
}
.page-home .schedule-th {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--h-blue);
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border-top: 0;
}
.page-home .sch-match {
  font-weight: 500;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .sch-venue {
  color: var(--h-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .sch-time {
  color: var(--h-orange);
  text-align: right;
  font-weight: 600;
}
.page-home .schedule-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.page-home .schedule-aside {
  margin-top: 24px;
}
.page-home .schedule-aside-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--h-line);
}
.page-home .schedule-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .schedule-brief {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--h-line);
}
.page-home .schedule-brief-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--h-blue);
  margin: 0 0 8px;
}
.page-home .schedule-brief-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--h-gray);
  margin-bottom: 12px;
}

.page-home .home-news {
  padding: 64px 0;
  background: rgba(10,10,20,1);
}
.page-home .news-layout {
  display: grid;
  gap: 24px;
}
.page-home .news-featured {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--h-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(19,18,38,0.5);
}
.page-home .news-featured-img {
  overflow: hidden;
}
.page-home .news-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s var(--h-ease);
}
.page-home .news-featured:hover .news-img,
.page-home .news-featured:focus-within .news-img {
  transform: scale(1.02);
}
.page-home .news-featured-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.page-home .news-title {
  font-size: 20px;
  line-height: 1.45;
  color: var(--h-silver);
  margin: 0;
}
.page-home .news-summary {
  font-size: 14px;
  color: var(--h-gray);
  line-height: 1.7;
  margin: 0;
}
.page-home .news-link {
  color: var(--h-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  transition: gap 0.2s var(--h-ease), color 0.2s var(--h-ease);
}
.page-home .news-link:hover,
.page-home .news-link:focus-visible {
  color: var(--h-orange);
}
.page-home .news-list {
  display: grid;
  gap: 10px;
}
.page-home .news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 14px 16px;
  border: 1px solid var(--h-line);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s var(--h-ease), background 0.2s var(--h-ease);
}
.page-home .news-item:hover,
.page-home .news-item:focus-within {
  border-color: rgba(0,194,255,0.4);
  background: rgba(0,194,255,0.05);
}
.page-home .news-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--h-silver);
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.page-home .news-time {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--h-gray);
}
.page-home .news-footer {
  margin-top: 28px;
  text-align: center;
}

.page-home .home-capability {
  padding: 64px 0;
  background: linear-gradient(115deg, rgba(19,18,38,0.9), rgba(59,45,110,0.35));
}
.page-home .capability-grid {
  display: grid;
  gap: 16px;
}
.page-home .capability-card {
  padding: 20px;
  border: 1px solid var(--h-line);
  border-radius: 8px;
  background: rgba(10,10,20,0.7);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--h-ease), transform 0.2s var(--h-ease);
}
.page-home .capability-card:hover,
.page-home .capability-card:focus-within {
  border-color: rgba(122,92,255,0.5);
  transform: translateY(-2px);
}
.page-home .capability-num {
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  color: var(--h-purple);
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}
.page-home .capability-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--h-silver);
  margin: 0 0 8px;
}
.page-home .capability-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--h-gray);
  margin: 0;
}

.page-home .home-contact {
  padding: 64px 0;
  background: rgba(10,10,20,1);
}
.page-home .contact-grid {
  display: grid;
  gap: 16px;
}
.page-home .contact-card {
  padding: 20px;
  border: 1px solid var(--h-line);
  border-radius: 8px;
  text-align: center;
}
.page-home .contact-icon {
  font-size: 28px;
  color: var(--h-blue);
  display: block;
  margin-bottom: 8px;
}
.page-home .contact-label {
  font-size: 14px;
  color: var(--h-gray);
  font-weight: 400;
  margin: 0 0 4px;
}
.page-home .contact-value {
  font-family: var(--font-data);
  font-size: 16px;
  font-weight: 600;
  color: var(--h-silver);
  word-break: break-all;
}
.page-home .contact-note {
  font-size: 13px;
  color: var(--h-gray);
  margin: 8px 0 0;
}
.page-home .contact-extra {
  margin-top: 24px;
  padding: 20px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 8px;
  text-align: center;
}
.page-home .contact-address {
  font-size: 14px;
  color: var(--h-gray);
  margin: 0 0 16px;
}
.page-home .contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .page-home .intro-grid {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
  .page-home .league-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .database-grid {
    grid-template-columns: 1fr 0.85fr;
    align-items: start;
  }
  .page-home .schedule-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 24px;
    align-items: start;
  }
  .page-home .schedule-aside {
    margin-top: 0;
  }
  .page-home .news-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .page-home .capability-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .intro-orbit {
    width: 200px;
    height: 200px;
  }
  .page-home .schedule-row {
    grid-template-columns: 76px 1fr 140px 80px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-intro {
    padding: 56px 0 88px;
  }
  .page-home .intro-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    column-gap: 80px;
  }
  .page-home .intro-panel {
    position: sticky;
    top: 110px;
  }
  .page-home .intro-orbit {
    width: 260px;
    height: 260px;
  }
  .page-home .home-league,
  .page-home .home-database,
  .page-home .home-schedule,
  .page-home .home-news,
  .page-home .home-capability,
  .page-home .home-contact {
    padding: 88px 0;
  }
  .page-home .schedule-row {
    grid-template-columns: 84px 1fr 160px 90px;
    padding: 16px 20px;
  }
  .page-home .league-title {
    font-size: 20px;
  }
  .page-home .news-item {
    padding: 16px 18px;
  }
}
