.page-home {
  --container: 1240px;
  --radius-lg: 22px;
  --accent-glow: 0 0 24px rgba(26, 247, 25, 0.32);
  --blue-glow: 0 0 24px rgba(0, 240, 255, 0.26);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home :where(.ph-radar, .ph-library, .ph-expert, .ph-schedule, .ph-stream) {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.page-home .ph-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 1.25rem 3rem;
  background: linear-gradient(120deg, rgba(10, 14, 23, 0.97) 0%, rgba(13, 43, 62, 0.9) 55%, rgba(10, 14, 23, 0.78) 100%);
  overflow: hidden;
  isolation: isolate;
}

.page-home .ph-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  z-index: -2;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 12% 100%);
}

.page-home .ph-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: -1;
  -webkit-mask-image: linear-gradient(90deg, #fff 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(90deg, #fff 0%, #000 70%, transparent 100%);
  pointer-events: none;
}

.page-home .ph-hero__grid {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.page-home .ph-hero__panel--main {
  background: linear-gradient(140deg, rgba(17, 24, 38, 0.92), rgba(13, 43, 62, 0.62));
  border-left: 4px solid var(--neon);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.75rem) 100%, 0 100%);
}

.page-home .ph-hero__panel--search {
  background: rgba(17, 24, 38, 0.88);
  border: 1px solid rgba(0, 240, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--blue-glow), 0 30px 60px rgba(0, 0, 0, 0.45);
  padding: 1.75rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.page-home .ph-hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.page-home .ph-hero__live {
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.page-home .ph-hero__live-dot,
.page-home .ph-schedule__dot,
.page-home .ph-radar__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: page-home-blink 1.6s ease-in-out infinite;
}

@keyframes page-home-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.page-home .ph-hero__eyebrow {
  font-family: var(--font-data);
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-home .ph-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin: 0 0 1.1rem;
}

.page-home .ph-hero__title-accent {
  display: block;
  color: var(--neon);
  text-shadow: 0 0 28px rgba(26, 247, 25, 0.35);
  margin-top: 0.2rem;
}

.page-home .ph-hero__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.page-home .ph-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.page-home .ph-hero__stat {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.page-home .ph-hero__stat--primary {
  background: var(--neon);
}

.page-home .ph-hero__stat--primary .ph-hero__stat-num {
  color: #04150B;
  text-shadow: none;
}

.page-home .ph-hero__stat--primary .ph-hero__stat-label {
  color: rgba(4, 21, 11, 0.82);
}

.page-home .ph-hero__stat-num {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(26, 247, 25, 0.4);
  line-height: 1.2;
}

.page-home .ph-hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: right;
}

.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home .ph-hero__card-index {
  font-family: var(--font-data);
  color: var(--blue);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.page-home .ph-hero__search-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.page-home .ph-hero__search-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.page-home .ph-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  transition: box-shadow var(--transition), border-color var(--transition);
  margin-bottom: 1.1rem;
}

.page-home .ph-search:focus-within {
  border-color: var(--neon);
  box-shadow: 0 0 0 4px rgba(26, 247, 25, 0.16), var(--accent-glow);
}

.page-home .ph-search__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.page-home .ph-search__ic {
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
  padding-right: 0.5rem;
}

.page-home .ph-hero__hot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.page-home .ph-hero__hot-label {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.page-home .ph-hero__hot-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 240, 255, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s, box-shadow 0.2s;
}

.page-home .ph-hero__hot-link:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
}

.page-home .ph-hero__quick-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.page-home .ph-hero__quick-link {
  color: var(--text-bright);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--neon);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .ph-hero__quick-link:hover {
  color: var(--neon);
  border-color: var(--blue);
}

.page-home .ph-radar__top,
.page-home .ph-schedule__head,
.page-home .ph-expert__head,
.page-home .ph-library__heading,
.page-home .ph-stream__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.page-home .ph-radar__heading,
.page-home .ph-library__heading,
.page-home .ph-schedule__head,
.page-home .ph-stream__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.page-home .ph-radar__index,
.page-home .ph-library__index,
.page-home .ph-schedule__index,
.page-home .ph-expert__index,
.page-home .ph-stream__index {
  font-family: var(--font-data);
  color: var(--neon);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

.page-home .ph-radar__title,
.page-home .ph-library__title,
.page-home .ph-schedule__title,
.page-home .ph-expert__title,
.page-home .ph-stream__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--text-bright);
  line-height: 1.1;
}

.page-home .ph-radar__rule,
.page-home .ph-library__rule,
.page-home .ph-schedule__rule,
.page-home .ph-stream__rule {
  flex: 1;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 247, 25, 0.55), transparent);
  min-width: 48px;
}

.page-home .ph-radar__status {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26, 247, 25, 0.08);
  border: 1px solid rgba(26, 247, 25, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.page-home .ph-radar__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-home .ph-radar__filter {
  background: var(--surface);
  color: var(--text-dim);
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home .ph-radar__filter:hover {
  color: var(--text-bright);
  border-color: rgba(0, 240, 255, 0.4);
}

.page-home .ph-radar__filter.is-active {
  color: #04150B;
  background: var(--neon);
  font-weight: 700;
}

.page-home .ph-radar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.page-home .ph-radar__ring {
  position: relative;
  width: min(240px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.page-home .ph-radar__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.page-home .ph-radar__arc {
  fill: none;
  stroke: rgba(0, 240, 255, 0.3);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.page-home .ph-radar__line {
  stroke: rgba(0, 240, 255, 0.2);
  stroke-width: 0.75;
}

.page-home .ph-radar__sweep {
  fill: rgba(26, 247, 25, 0.16);
  transform-origin: 110px 110px;
  animation: page-home-sweep 4s linear infinite;
}

@keyframes page-home-sweep {
  to { transform: rotate(360deg); }
}

.page-home .ph-radar__core {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.page-home .ph-radar__core-num {
  font-family: var(--font-data);
  font-size: 3rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 24px rgba(26, 247, 25, 0.5);
}

.page-home .ph-radar__core-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.page-home .ph-radar__legal {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 230px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.page-home .ph-radar__list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0.6rem;
  background: var(--surface);
  border-radius: var(--radius);
}

.page-home .ph-radar__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  background: var(--surface-raised);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: transform var(--transition), border-color var(--transition);
}

.page-home .ph-radar__item:hover {
  transform: translateX(4px);
  border-left-color: var(--neon);
}

.page-home .ph-radar__name {
  display: block;
  color: var(--text-bright);
  font-weight: 700;
  font-size: 0.95rem;
}

.page-home .ph-radar__team {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: block;
  margin-top: 0.15rem;
}

.page-home .ph-radar__note {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--blue);
  text-align: left;
}

.page-home .ph-radar__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  min-height: 260px;
}

.page-home .ph-radar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.2) contrast(1.08);
}

.page-home .ph-radar__fig {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(10, 14, 23, 0.92));
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 2.5rem 1rem 0.85rem;
  margin: 0;
}

.page-home .ph-radar__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.page-home .ph-radar__trust {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.page-home .ph-library__intro {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 46rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.page-home .ph-library__search {
  display: flex;
  gap: 0.6rem;
  max-width: 620px;
  margin-bottom: 2rem;
}

.page-home .ph-library__input {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.page-home .ph-library__input:focus {
  border-color: var(--neon);
  box-shadow: var(--accent-glow);
}

.page-home .ph-library__submit {
  background: var(--neon);
  color: #04150B;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.page-home .ph-library__submit:hover {
  box-shadow: var(--accent-glow);
  transform: translateY(-1px);
}

.page-home .ph-library__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-home .ph-library__stat {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--neon);
}

.page-home .ph-library__num {
  display: block;
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1.15;
}

.page-home .ph-library__label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.page-home .ph-library__clubs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home .ph-library__club {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.page-home .ph-library__club:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 247, 25, 0.6);
  box-shadow: var(--accent-glow);
}

.page-home .ph-library__club-name {
  color: var(--text-bright);
  font-weight: 700;
  font-size: 1rem;
}

.page-home .ph-library__club-league {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.page-home .ph-library__club-id {
  font-family: var(--font-data);
  color: var(--blue);
  font-size: 0.7rem;
}

.page-home .ph-library__v4 {
  background: linear-gradient(135deg, var(--highlight-bg) 0%, #0D2B3E 55%, var(--surface) 135%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-home .ph-library__v4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.page-home .ph-library__v4-tag {
  position: relative;
}

.page-home .ph-library__v4-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--text-bright);
  margin: 0.75rem 0 0.4rem;
  position: relative;
}

.page-home .ph-library__v4-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  max-width: 40rem;
}

.page-home .ph-library__v4-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--neon);
  padding-bottom: 0.15rem;
  position: relative;
}

.page-home .ph-expert__team {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--text-dim);
  background: rgba(255, 176, 0, 0.08);
  border: 1px solid rgba(255, 176, 0, 0.25);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

.page-home .ph-expert__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  background: var(--surface);
  padding: 0.45rem;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1rem;
}

.page-home .ph-expert__tab {
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.82rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.page-home .ph-expert__tab:hover {
  color: var(--text-bright);
}

.page-home .ph-expert__tab.is-active {
  background: var(--blue);
  color: #04151A;
  font-weight: 700;
}

.page-home .ph-expert__hint {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  border-left: 3px solid var(--blue);
  padding-left: 0.85rem;
  line-height: 1.6;
}

.page-home .ph-expert__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .ph-expert__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-home .ph-expert__card:hover {
  transform: translateY(-5px);
  border-top-color: var(--neon);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), var(--accent-glow);
}

.page-home .ph-expert__num {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
  line-height: 1;
}

.page-home .ph-expert__card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--text-bright);
  line-height: 1.4;
  margin: 0;
}

.page-home .ph-expert__card-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.page-home .ph-expert__card-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
}

.page-home .ph-expert__more {
  margin-top: 1.75rem;
}

.page-home .ph-schedule {
  position: relative;
}

.page-home .ph-schedule__bg {
  position: absolute;
  top: 8%;
  right: 0;
  width: 42%;
  max-width: 680px;
  height: auto;
  opacity: 0.14;
  filter: saturate(0.5);
  pointer-events: none;
  z-index: -1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .ph-schedule__live {
  margin-left: 0;
  color: var(--neon);
  font-family: var(--font-data);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26, 247, 25, 0.08);
  border: 1px solid rgba(26, 247, 25, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.page-home .ph-schedule__wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  overflow-x: auto;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.page-home .ph-schedule__table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.page-home .ph-schedule__table th {
  text-align: left;
  padding: 0.8rem 0.75rem;
  color: var(--blue);
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface-raised);
  white-space: nowrap;
}

.page-home .ph-schedule__table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(138, 145, 159, 0.12);
  white-space: nowrap;
}

.page-home .ph-schedule__table tr:last-child td {
  border-bottom: none;
}

.page-home .ph-schedule__table tbody tr {
  transition: background 0.2s;
}

.page-home .ph-schedule__table tbody tr:hover {
  background: rgba(0, 240, 255, 0.06);
}

.page-home .ph-schedule__time {
  font-family: var(--font-data);
  color: var(--text-dim);
  font-size: 0.82rem;
}

.page-home .ph-schedule__score {
  display: inline-block;
  min-width: 52px;
  text-align: center;
  font-family: var(--font-data);
  color: var(--neon);
  font-weight: 700;
  background: rgba(26, 247, 25, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
}

.page-home .ph-schedule__vs {
  display: inline-block;
  min-width: 52px;
  text-align: center;
  font-family: var(--font-data);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.page-home .ph-schedule__fav {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid rgba(0, 240, 255, 0.25);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-home .ph-schedule__fav:hover {
  border-color: var(--amber);
}

.page-home .ph-schedule__fav-check {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.page-home .ph-schedule__fav-star {
  color: var(--text-dim);
  font-size: 1.15rem;
  line-height: 1;
  transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
}

.page-home .ph-schedule__fav-check:checked + .ph-schedule__fav-star {
  color: var(--amber);
  transform: scale(1.15);
  text-shadow: 0 0 12px rgba(255, 176, 0, 0.5);
}

.page-home .ph-schedule__fav:has(.ph-schedule__fav-check:checked) {
  border-color: var(--amber);
  box-shadow: 0 0 14px rgba(255, 176, 0, 0.25);
}

.page-home .ph-stream__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 48rem;
  margin-bottom: 2rem;
}

.page-home .ph-stream__timeline {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 1px solid rgba(0, 240, 255, 0.25);
  display: grid;
  gap: 1.25rem;
}

.page-home .ph-stream__item {
  position: relative;
}

.page-home .ph-stream__item::before {
  content: "";
  position: absolute;
  left: -1.68rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: page-home-blink 2.4s ease-in-out infinite;
}

.page-home .ph-stream__time {
  font-family: var(--font-data);
  color: var(--neon);
  font-size: 0.78rem;
  display: block;
  margin-bottom: 0.3rem;
}

.page-home .ph-stream__body {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.page-home .ph-stream__item:hover .ph-stream__body {
  background: var(--surface-raised);
}

.page-home .ph-stream__text {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  min-width: 200px;
}

.page-home .ph-trust {
  position: relative;
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-home .ph-trust__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  display: block;
}

.page-home .ph-trust__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 3rem 1.5rem;
}

.page-home .ph-trust__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-bright);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.page-home .ph-trust__desc {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 12px rgba(10, 14, 23, 0.9);
}

.page-home .ph-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .page-home .ph-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .ph-hero__stat {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .page-home .ph-hero__stat-label {
    text-align: left;
  }

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

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

  .page-home .ph-stream__body {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-home .ph-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2rem;
  }

  .page-home .ph-hero__panel--search {
    padding: 2rem;
    transform: translateY(18px) rotate(1.5deg);
    transition: transform 0.3s ease;
  }

  .page-home .ph-hero__panel--search:hover {
    transform: translateY(12px) rotate(0deg);
  }

  .page-home .ph-radar__grid {
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 1.75rem;
  }

  .page-home .ph-radar__item {
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
  }

  .page-home .ph-radar__note {
    text-align: right;
    max-width: 130px;
  }

  .page-home .ph-radar__media {
    min-height: 320px;
  }

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

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

  .page-home .ph-library__v4 {
    padding: 2rem 2.25rem;
  }

  .page-home .ph-expert__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-home .ph-schedule__live {
    margin-left: auto;
  }
}
