.page-home {
  --hero-min-height: 80vh;
  --panel-gap: 4rem;
  --card-radius: 16px;
  --transition-speed: 0.3s;
}
.page-home .split-hero {
  display: flex;
  flex-direction: column;
  min-height: var(--hero-min-height);
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f1a2e 100%);
  color: var(--text-light);
  gap: 2rem;
}
.page-home .split-hero__left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home .breadcrumb-hint {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-green);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.page-home .split-hero__title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1.2rem;
  color: var(--text-light);
}
.page-home .split-hero__title .section-highlight {
  color: var(--primary-orange);
}
.page-home .split-hero__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 2rem;
}
.page-home .split-hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.page-home .stat-item {
  display: flex;
  flex-direction: column;
}
.page-home .stat-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--data-highlight);
  line-height: 1.2;
}
.page-home .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}
.page-home .split-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-home .split-hero__right {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-home .hero-svg-container {
  width: 100%;
  max-width: 500px;
  position: relative;
}
.page-home .hero-svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-home .hero-svg-fallback {
  display: none;
}
@media (max-width: 640px) {
  .page-home .hero-svg {
    display: none;
  }
  .page-home .hero-svg-fallback {
    display: block;
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
    object-fit: contain;
  }
}
.page-home .section-panel {
  padding: 3rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-home .section-panel--alt {
  background-color: var(--bg-light);
  border-radius: 2rem 2rem 0 0;
  margin-top: 1rem;
  padding-bottom: 4rem;
}
.page-home .panel-header {
  margin-bottom: 2.5rem;
}
.page-home .panel-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.page-home .panel-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  max-width: 600px;
}
.page-home .glass-card {
  background: var(--card-glass);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--card-radius);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.page-home .glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.page-home .event-table-wrap {
  overflow-x: auto;
  padding: 0;
}
.page-home .event-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.page-home .event-table th {
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.page-home .event-table th .sort-arrow {
  font-size: 0.7rem;
  margin-left: 0.3rem;
  color: var(--accent-green);
}
.page-home .event-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0, 59, 111, 0.08);
  color: var(--text-dark);
}
.page-home .event-table tbody tr:hover {
  background: rgba(255, 107, 53, 0.06);
}
.page-home .badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-home .badge-live {
  background: var(--accent-green);
  color: #0a2a1a;
}
.page-home .badge-done {
  background: #e0e0e0;
  color: #666;
}
.page-home .badge-upcoming {
  background: var(--primary-orange);
  color: var(--text-light);
}
.page-home .event-table-img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 1.5rem auto 0;
  border-radius: 8px;
  object-fit: cover;
}
.page-home .panel-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-home .follow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .page-home .follow-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .page-home .follow-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.page-home .follow-card {
  padding: 0;
  overflow: hidden;
}
.page-home .follow-card__header {
  display: flex;
  align-items: center;
  padding: 1rem 1.4rem;
  cursor: pointer;
  background: rgba(0, 59, 111, 0.03);
  border-bottom: 1px solid rgba(0, 59, 111, 0.06);
  gap: 0.8rem;
  user-select: none;
}
.page-home .follow-card__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  flex: 1 1 auto;
}
.page-home .follow-card__count {
  font-size: 0.8rem;
  color: #777;
  font-family: var(--font-mono);
}
.page-home .follow-card__toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-orange);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.page-home .follow-card__body {
  padding: 0.8rem 1.4rem 1.2rem;
}
.page-home .follow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .follow-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}
.page-home .follow-match {
  color: var(--text-dark);
}
.page-home .follow-score {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--primary-blue);
}
.page-home .follow-list-img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  object-fit: cover;
}
.page-home .version-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .page-home .version-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-home .version-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.page-home .version-card__icon {
  width: 48px;
  height: 48px;
}
.page-home .version-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.page-home .version-card__desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.page-home .version-card__img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-top: 0.5rem;
}
.page-home .directory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .page-home .directory-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .page-home .directory-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.page-home .dir-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-home .dir-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  opacity: 0.7;
  line-height: 1;
}
.page-home .dir-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
.page-home .dir-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.page-home .dir-list li a {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.page-home .dir-list li a:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}
.page-home .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-orange);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.page-home .btn-primary:hover {
  background: #e55a2b;
  transform: scale(1.02);
}
.page-home .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary-blue);
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--primary-blue);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.page-home .btn-outline:hover {
  background: var(--primary-blue);
  color: var(--text-light);
}
@media (max-width: 480px) {
  .page-home .split-hero {
    padding: 1.5rem 1rem;
  }
  .page-home .split-hero__title {
    font-size: 2rem;
  }
  .page-home .split-hero__stats {
    gap: 1.2rem;
  }
  .page-home .stat-num {
    font-size: 1.5rem;
  }
  .page-home .section-panel {
    padding: 2rem 1rem;
  }
  .page-home .panel-title {
    font-size: 1.5rem;
  }
  .page-home .glass-card {
    padding: 1.2rem;
  }
  .page-home .event-table {
    font-size: 0.8rem;
  }
  .page-home .event-table th,
  .page-home .event-table td {
    padding: 0.6rem 0.6rem;
  }
}
@media (min-width: 768px) {
  .page-home .split-hero {
    flex-direction: row;
    align-items: center;
    padding: 3rem 4rem;
  }
  .page-home .split-hero__left {
    padding-right: 3rem;
  }
  .page-home .split-hero__title {
    font-size: 3.6rem;
  }
  .page-home .section-panel {
    padding: 4rem 2rem;
  }
  .page-home .panel-title {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .page-home .split-hero {
    padding: 4rem 6rem;
  }
  .page-home .split-hero__title {
    font-size: 4.2rem;
  }
}
