.page-home {
  --home-gap-lg: 28px;
  --home-gap-md: 16px;
  --home-card-bg: #131523;
  --home-card-border: rgba(30, 136, 255, 0.28);
  --home-gradient-hero: linear-gradient(135deg, #54E6FF 0%, #1E88FF 45%, #B026FF 100%);
  background: #0A0A12;
  color: #F0F4FF;
  font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.page-home,
.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home .container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home a {
  color: #1E88FF;
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-home a:hover {
  color: #54E6FF;
}

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

.page-home .section-head {
  margin-bottom: 28px;
}

.page-home .section-kicker {
  color: #39FF14;
  font-family: "Rajdhani", "Space Grotesk", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.page-home .section-head h2,
.page-home .section-head h3 {
  font-family: "Rajdhani", "Space Grotesk", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: #F0F4FF;
  margin: 0 0 10px;
}

.page-home .section-lead {
  color: #A0A6B0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 66ch;
  margin: 0;
}

.page-home .tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(30, 136, 255, 0.5);
  color: #1E88FF;
  font-size: 13px;
  font-weight: 600;
  background: rgba(30, 136, 255, 0.08);
}

.page-home .tag-chip.purple {
  border-color: rgba(176, 38, 255, 0.5);
  color: #B026FF;
  background: rgba(176, 38, 255, 0.08);
}

.page-home .version-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #39FF14;
  color: #39FF14;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 14px;
  background: rgba(57, 255, 20, 0.08);
  white-space: nowrap;
}

.page-home .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39FF14;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}

.page-home .filter-btn {
  border: 1px solid rgba(30, 136, 255, 0.4);
  background: rgba(30, 136, 255, 0.07);
  color: #F0F4FF;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-home .filter-btn:hover {
  border-color: #54E6FF;
  color: #54E6FF;
}

.page-home .filter-btn.is-active {
  background: #1E88FF;
  border-color: #1E88FF;
  color: #F0F4FF;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== HERO ===== */
.page-home .home-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #0A0A12;
  padding: calc(64px + 36px) 0 28px;
}

.page-home .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 10, 18, 0.95) 18%, rgba(10, 10, 18, 0.62) 55%, rgba(30, 136, 255, 0.22) 100%);
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 32px;
}

.page-home .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #A0A6B0;
  margin-bottom: 18px;
}

.page-home .hero-breadcrumb a {
  color: #A0A6B0;
}

.page-home .hero-breadcrumb a:hover {
  color: #54E6FF;
}

.page-home .hero-kicker {
  color: #39FF14;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-home .hero-title {
  font-family: "Rajdhani", "Space Grotesk", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  color: #F0F4FF;
}

.page-home .hero-subtitle {
  font-family: "Rajdhani", "Space Grotesk", "PingFang SC", sans-serif;
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 600;
  color: #A0A6B0;
  margin: 6px 0 18px;
  letter-spacing: 0.06em;
}

.page-home .hero-version-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.page-home .hero-version-mega {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 1;
  background: linear-gradient(135deg, #54E6FF 0%, #1E88FF 45%, #B026FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.page-home .hero-live-chip {
  border-color: #39FF14;
  color: #39FF14;
  background: rgba(57, 255, 20, 0.1);
  font-weight: 700;
  font-size: 13px;
}

.page-home .hero-desc {
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.7;
  color: #F0F4FF;
  margin: 0 0 24px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.page-home .hero-btn-primary {
  background: #1E88FF;
  color: #F0F4FF;
  box-shadow: 0 8px 30px rgba(30, 136, 255, 0.3);
}

.page-home .hero-btn-primary:hover {
  background: #54E6FF;
  color: #0A0A12;
}

.page-home .hero-btn-ghost {
  border-color: rgba(176, 38, 255, 0.7);
  color: #B026FF;
  background: rgba(176, 38, 255, 0.08);
}

.page-home .hero-btn-ghost:hover {
  background: rgba(176, 38, 255, 0.18);
  color: #F0F4FF;
}

.page-home .hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #A0A6B0;
}

.page-home .meta-item strong {
  color: #39FF14;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
}

/* ===== VERSION UPDATE ===== */
.page-home .update-bento {
  display: grid;
  gap: 16px;
}

.page-home .update-card {
  background: #131523;
  border: 1px solid rgba(30, 136, 255, 0.22);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.page-home .update-card-main {
  border-top: 3px solid #1E88FF;
}

.page-home .update-card-mini {
  padding: 20px;
  border-radius: 16px;
}

.page-home .update-card-mini.accent-purple {
  border-color: rgba(176, 38, 255, 0.3);
  background: linear-gradient(150deg, rgba(176, 38, 255, 0.12), #131523 80%);
}

.page-home .update-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .update-card-main h3 {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #F0F4FF;
}

.page-home .update-card-main p {
  color: #A0A6B0;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.page-home .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-home .check-list li {
  position: relative;
  padding-left: 26px;
  color: #F0F4FF;
  font-size: 15px;
}

.page-home .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 8px;
  border-left: 2px solid #39FF14;
  border-bottom: 2px solid #39FF14;
  transform: rotate(-45deg);
}

.page-home .panel-header {
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(30, 136, 255, 0.2);
}

.page-home .panel-title {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #54E6FF;
}

.page-home .update-card-mini h4 {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #F0F4FF;
}

.page-home .update-card-mini p {
  font-size: 14px;
  color: #A0A6B0;
  line-height: 1.6;
  margin: 0 0 14px;
}

.page-home .inline-link {
  font-size: 14px;
  font-weight: 600;
}

/* ===== CORE BENTO ===== */
.page-home .bento-grid {
  display: grid;
  gap: 16px;
}

.page-home .bento-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 22px;
  border-radius: 20px;
  background: #131523;
  border: 1px solid rgba(30, 136, 255, 0.22);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(30, 136, 255, 0.5), 0 0 32px rgba(30, 136, 255, 0.18);
}

.page-home .bento-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 136, 255, 0.15), transparent 55%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.page-home .bento-cell:hover::after {
  opacity: 1;
}

.page-home .bento-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #54E6FF;
  margin-bottom: 10px;
}

.page-home .bento-title {
  position: relative;
  z-index: 1;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #F0F4FF;
  margin-bottom: 6px;
}

.page-home .bento-desc {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #A0A6B0;
  line-height: 1.5;
  margin-bottom: 14px;
}

.page-home .bento-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #1E88FF;
}

.page-home .bento-record {
  border-color: rgba(176, 38, 255, 0.35);
}

.page-home .bento-record::after {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.18), transparent 60%);
}

.page-home .bento-play {
  border-color: rgba(84, 230, 255, 0.3);
}

.page-home .bento-play::after {
  background: linear-gradient(135deg, rgba(84, 230, 255, 0.14), transparent 60%);
}

.page-home .bento-member {
  border-color: rgba(57, 255, 20, 0.3);
}

.page-home .bento-member::after {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), transparent 60%);
}

/* ===== RECORDS ===== */
.page-home .records-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .records-visual img,
.page-home .play-visual img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.page-home .records-visual {
  position: relative;
}

.page-home .records-visual::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 20px;
  z-index: -1;
}

.page-home .month-filter {
  margin: 18px 0 14px;
}

.page-home .month-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-home .month-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(19, 21, 35, 0.9);
  border: 1px solid rgba(30, 136, 255, 0.2);
  border-radius: 12px;
  font-size: 14px;
  color: #F0F4FF;
}

.page-home .month-name {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.page-home .month-status {
  font-size: 12px;
  color: #39FF14;
  position: relative;
  padding-left: 12px;
}

.page-home .month-status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #39FF14;
}

.page-home .records-note {
  margin-top: 18px;
  font-size: 14px;
  color: #A0A6B0;
  border-left: 3px solid #39FF14;
  padding-left: 14px;
}

/* ===== PLAY ===== */
.page-home .play-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .tag-filter {
  margin: 18px 0 16px;
}

.page-home .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .text-link {
  font-weight: 600;
  font-size: 15px;
}

.page-home .play-visual {
  position: relative;
}

.page-home .play-visual::after {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 20px;
  z-index: -1;
}

/* ===== VIP ===== */
.page-home .home-vip {
  padding-bottom: 64px;
}

.page-home .vip-inner {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.2) 0%, rgba(10, 10, 18, 0.6) 55%, rgba(30, 136, 255, 0.12) 100%);
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .vip-text h2 {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #F0F4FF;
}

.page-home .vip-text p {
  color: #A0A6B0;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.page-home .vip-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  background: #B026FF;
  color: #F0F4FF;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(176, 38, 255, 0.3);
}

.page-home .vip-btn:hover {
  background: #54E6FF;
  color: #0A0A12;
}

.page-home .vip-visual img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== LOG ===== */
.page-home .home-log {
  padding-bottom: 72px;
}

.page-home .log-list {
  display: grid;
  gap: 12px;
}

.page-home .log-item {
  background: #131523;
  border: 1px solid rgba(30, 136, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.page-home .log-item[open] {
  border-color: rgba(30, 136, 255, 0.5);
  box-shadow: 0 0 24px rgba(30, 136, 255, 0.08);
}

.page-home .log-item summary {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #F0F4FF;
}

.page-home .log-item summary::-webkit-details-marker {
  display: none;
}

.page-home .log-item summary::after {
  content: "+";
  margin-left: auto;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1E88FF;
  transition: transform 0.25s ease;
}

.page-home .log-item[open] summary::after {
  content: "−";
}

.page-home .log-version {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #39FF14;
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 13px;
}

.page-home .log-time {
  font-size: 12px;
  color: #A0A6B0;
  border: 1px solid rgba(160, 166, 176, 0.3);
  border-radius: 999px;
  padding: 3px 10px;
}

.page-home .log-title {
  font-weight: 600;
  flex: 1 1 220px;
}

.page-home .log-body {
  list-style: none;
  padding: 0 20px 18px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-home .log-body li {
  color: #A0A6B0;
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}

.page-home .log-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #1E88FF;
  transform: rotate(45deg);
}

.page-home .log-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 768px) {
  .page-home .home-section {
    padding: 84px 0 0;
  }

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

  .page-home .records-grid,
  .page-home .play-grid,
  .page-home .vip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .play-text {
    order: 1;
  }

  .page-home .play-visual {
    order: 2;
  }

  .page-home .home-vip {
    padding-bottom: 84px;
  }

  .page-home .vip-inner {
    padding: 40px;
  }

  .page-home .vip-text h2 {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .page-home .home-hero {
    min-height: 92vh;
    padding-top: 72px;
  }

  .page-home .hero-meta {
    gap: 36px;
    padding-top: 16px;
  }

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

  .page-home .update-card-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .page-home .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
  }

  .page-home .bento-android {
    grid-column: span 2;
    grid-row: span 2;
  }

  .page-home .bento-member {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 140px;
  }

  .page-home .bento-member .bento-label {
    margin-bottom: 0;
  }

  .page-home .bento-member .bento-desc {
    margin-bottom: 0;
  }

  .page-home .bento-member .bento-tag {
    flex-shrink: 0;
    margin-left: 24px;
  }

  .page-home .bento-cell {
    min-height: 190px;
  }

  .page-home .section-head h2 {
    font-size: 40px;
  }

  .page-home .hero-desc {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .page-home .records-grid {
    column-gap: 56px;
  }

  .page-home .play-grid {
    column-gap: 56px;
  }

  .page-home .vip-inner {
    column-gap: 64px;
  }
}
