.page-home {
  --hero-min-height: 85vh;
  --card-radius: 12px;
  --shape-blur: 60px;
  --carousel-gap: 24px;
  display: block;
  width: 100%;
  overflow-x: hidden;
}

/* ===== 首屏动势色块 ===== */
.page-home .home-hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

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

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

.page-home .home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26,10,46,0.85) 0%, rgba(26,10,46,0.60) 40%, rgba(45,27,78,0.70) 100%);
  pointer-events: none;
}

.page-home .home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-home .home-hero-text {
  max-width: 600px;
}

.page-home .home-hero-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  opacity: 0.9;
}

.page-home .home-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 1.05;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.page-home .home-hero-title-accent {
  color: var(--color-gold);
  display: inline-block;
  position: relative;
}

.page-home .home-hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-neon));
  border-radius: 2px;
  opacity: 0.5;
}

.page-home .home-hero-desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 0 32px;
}

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

.page-home .home-btn-pulse {
  animation: homePulseGlow 2.8s ease-in-out infinite;
}

@keyframes homePulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 0 28px rgba(212,175,55,0.7), 0 0 60px rgba(0,194,255,0.25); }
}

.page-home .home-hero-deco {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  min-height: 300px;
}

.page-home .home-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(var(--shape-blur));
  pointer-events: none;
}

.page-home .home-hero-shape-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212,175,55,0.20) 0%, transparent 70%);
  top: -40px;
  right: -20px;
}

.page-home .home-hero-shape-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0,194,255,0.15) 0%, transparent 70%);
  bottom: -30px;
  right: 60px;
}

/* ===== 规则提示横幅 ===== */
.page-home .home-rule {
  padding: 20px 0;
}

.page-home .home-rule-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.25);
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 16px 24px;
  backdrop-filter: blur(4px);
}

.page-home .home-rule-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.page-home .home-rule-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

.page-home .home-rule-link {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.page-home .home-rule-link:hover {
  color: var(--color-neon);
}

/* ===== 快速入口卡片 ===== */
.page-home .home-quick {
  padding: 60px 0;
}

.page-home .home-quick-header {
  margin-bottom: 40px;
  text-align: center;
}

.page-home .home-quick-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.page-home .home-quick-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .home-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-home .home-quick-card {
  background: var(--color-bg-secondary);
  border-radius: var(--card-radius);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-home .home-quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-neon));
  opacity: 0;
  transition: opacity var(--transition);
}

.page-home .home-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.3);
}

.page-home .home-quick-card:hover::before {
  opacity: 1;
}

.page-home .home-quick-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(212,175,55,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.15);
}

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

.page-home .home-quick-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-text);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-home .home-quick-card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 20px;
  flex-grow: 1;
}

.page-home .home-quick-card-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.page-home .home-quick-card-link:hover {
  color: var(--color-neon);
}

.page-home .home-quick-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.page-home .home-quick-card-link:hover .home-quick-arrow {
  transform: translateX(4px);
}

/* ===== 最新动态轮播 ===== */
.page-home .home-updates {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45,27,78,0.30) 50%, transparent 100%);
}

.page-home .home-updates-header {
  margin-bottom: 40px;
  text-align: center;
}

.page-home .home-updates-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.page-home .home-updates-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .home-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
}

.page-home .home-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.page-home .home-carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 360px;
}

.page-home .home-carousel-img {
  overflow: hidden;
  background: var(--color-bg-primary);
  min-height: 280px;
}

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

.page-home .home-carousel-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .home-carousel-body .badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.page-home .home-carousel-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-text);
  margin: 0 0 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-home .home-carousel-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}

.page-home .home-carousel-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.page-home .home-carousel-link:hover {
  color: var(--color-neon);
}

.page-home .home-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(26,10,46,0.6);
  border-top: 1px solid var(--color-border);
}

.page-home .home-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.page-home .home-carousel-btn:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--color-gold);
  color: var(--color-neon);
}

.page-home .home-carousel-dots {
  display: flex;
  gap: 10px;
}

.page-home .home-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.page-home .home-carousel-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

.page-home .home-carousel-dot:hover {
  background: var(--color-neon);
}

/* ===== 品牌声明区 ===== */
.page-home .home-brands {
  padding: 50px 0 60px;
}

.page-home .home-brands-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(45,27,78,0.25);
  border-radius: var(--card-radius);
  padding: 36px 40px;
  border: 1px solid var(--color-border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.page-home .home-brands-logo {
  flex-shrink: 0;
}

.page-home .home-brands-logo img {
  display: block;
  max-width: 200px;
  height: auto;
  border-radius: 4px;
}

.page-home .home-brands-text {
  display: flex;
  flex-direction: column;
}

.page-home .home-brands-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-home .home-brands-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 14px;
  max-width: 640px;
}

.page-home .home-brands-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.page-home .home-brands-link {
  color: var(--color-neon);
  text-decoration: none;
  transition: color var(--transition);
}

.page-home .home-brands-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-home .home-brands-sep {
  color: var(--color-border);
}

/* ===== 响应式：移动端优先 ===== */
@media (max-width: 768px) {
  .page-home .home-hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-home .home-hero-text {
    max-width: 100%;
    text-align: center;
  }

  .page-home .home-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .home-hero-actions {
    justify-content: center;
  }

  .page-home .home-hero-deco {
    display: none;
  }

  .page-home .home-hero-shape-1,
  .page-home .home-hero-shape-2 {
    display: none;
  }

  .page-home .home-hero {
    min-height: 60vh;
  }

  .page-home .home-rule-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px 18px;
  }

  .page-home .home-quick-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-home .home-quick-card {
    padding: 24px 20px 22px;
  }

  .page-home .home-quick-card-icon {
    width: 64px;
    height: 64px;
  }

  .page-home .home-quick-card-icon img {
    width: 64px;
    height: 64px;
  }

  .page-home .home-carousel-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-home .home-carousel-img {
    min-height: 200px;
    max-height: 240px;
  }

  .page-home .home-carousel-body {
    padding: 24px 20px;
  }

  .page-home .home-carousel-heading {
    font-size: 1.25rem;
  }

  .page-home .home-carousel-controls {
    gap: 12px;
    padding: 12px 16px;
  }

  .page-home .home-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .page-home .home-brands-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
  }

  .page-home .home-brands-logo {
    display: flex;
    justify-content: center;
  }

  .page-home .home-brands-links {
    justify-content: center;
  }
}

/* ===== 桌面扩展 ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-home .home-hero-content {
    grid-template-columns: 3fr 2fr;
    gap: 32px;
  }

  .page-home .home-hero-deco {
    min-height: 240px;
  }

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

  .page-home .home-quick-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .page-home .home-carousel-slide {
    grid-template-columns: 1fr 1.2fr;
  }

  .page-home .home-carousel-body {
    padding: 28px 24px;
  }
}
