/* ================================
   寻也电竞 - 可爱奶油风主题
   设计理念: 马卡龙色 / 圆润可爱 / 柔和温暖
   ================================ */
:root {
  --primary: #ffb5c5;
  --primary-soft: #ffd4de;
  --primary-deep: #f5a0b5;
  --secondary: #b5deff;
  --secondary-soft: #d4eaff;
  --accent: #ffe5b5;
  --accent-soft: #fff0d4;
  --warning: #ffd93d;
  --success: #b5f5d4;
  --bg-primary: #fff9f5;
  --bg-secondary: #fff0e8;
  --bg-card: #ffffff;
  --bg-hover: #fff0f5;
  --bg-border: rgba(255, 181, 197, 0.2);
  --text-dark: #5d4e60;
  --text-primary: #4a3f50;
  --text-secondary: #7a6b80;
  --text-muted: #a99bb0;
  --shadow-sm: 0 2px 8px rgba(255, 181, 197, 0.15);
  --shadow-md: 0 4px 16px rgba(255, 181, 197, 0.2);
  --shadow-lg: 0 8px 32px rgba(255, 181, 197, 0.25);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Noto Sans SC",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 181, 197, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(181, 222, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 229, 181, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ================================
   可爱按钮样式
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-bounce);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-deep) 100%
  );
  color: white;
  box-shadow: 0 4px 15px rgba(255, 181, 197, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 181, 197, 0.5);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary-deep);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(255, 181, 197, 0.15);
}

.btn-secondary:hover {
  background: var(--primary-soft);
  border-color: var(--primary-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 181, 197, 0.3);
}

/* ================================
   通用区块
   ================================ */
.section {
  padding: 70px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.notice-wrapper {
  position: relative;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ================================
   滚动reveal动画
   ================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.05s;
}
.stagger-2 {
  transition-delay: 0.1s;
}
.stagger-3 {
  transition-delay: 0.15s;
}
.stagger-4 {
  transition-delay: 0.2s;
}
.stagger-5 {
  transition-delay: 0.25s;
}
.stagger-6 {
  transition-delay: 0.3s;
}

/* ================================
   价目表区域
   ================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.pricing-banana {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* margin-bottom: 80px; */
}

.pricing-banana::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 181, 197, 0.3) 0%,
    rgba(255, 181, 197, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: bubbleFloat 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.pricing-banana-img {
  max-width: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(255, 181, 197, 0.3));
  animation: cuteBounce 3s ease-in-out infinite;
  display: block;
}

@keyframes cuteBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-4px) scale(0.98);
  }
  75% {
    transform: translateY(-6px) scale(1.01);
  }
}

/* 滚动箭头 */
.section-header {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.scroll-arrow {
  animation: cuteArrow 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary-deep);
  filter: drop-shadow(0 2px 8px rgba(255, 181, 197, 0.4));
}

@keyframes cuteArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* 价目表网格 */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* 价目卡片 */
.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: visible;
  border: 2px solid transparent;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-hover) 100%);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover .pricing-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 8px 28px rgba(255, 181, 197, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.pricing-card:hover .pricing-card-icon::after {
  opacity: 0.5;
  animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

/* 卡片头部 */
.pricing-card-header {
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-card:nth-child(1) .pricing-card-header {
  background: linear-gradient(145deg, #ffe5ec, #fff0f5);
  border-bottom: 2px solid rgba(255, 181, 197, 0.2);
}

.pricing-card:nth-child(2) .pricing-card-header {
  background: linear-gradient(145deg, #e5f0ff, #f0f7ff);
  border-bottom: 2px solid rgba(181, 222, 255, 0.2);
}

.pricing-card:nth-child(3) .pricing-card-header {
  background: linear-gradient(145deg, #fff5e5, #fff9f0);
  border-bottom: 2px solid rgba(255, 229, 181, 0.2);
}

.pricing-card-title {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.pricing-card-subtitle {
  color: var(--text-muted);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

/* 卡片图标 */
.pricing-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 20px rgba(255, 181, 197, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  border: 3px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: visible;
  display: none;
}

.pricing-card-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    var(--secondary-soft)
  );
  opacity: 0.3;
  z-index: -1;
  filter: blur(8px);
}

.pricing-card-icon svg {
  width: 40px;
  height: 40px;
}

.icon-gradient-1 {
  filter: drop-shadow(0 2px 4px rgba(255, 181, 197, 0.4));
}

.icon-gradient-2 {
  filter: drop-shadow(0 2px 4px rgba(181, 222, 255, 0.4));
}

.icon-gradient-3 {
  filter: drop-shadow(0 2px 4px rgba(255, 217, 61, 0.4));
}

.pricing-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px;
}

.pricing-sub-item {
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-bounce);
  padding: 16px 12px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 2px solid var(--bg-border);
  position: relative;
  overflow: hidden;
  outline: none !important;
  -webkit-tap-highlight-color: transparent; /* 移动端点击高亮 */
  box-shadow: none !important;
}

.pricing-sub-item:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--primary);
  background: var(--bg-hover);
  box-shadow: 0 8px 20px rgba(255, 181, 197, 0.25);
}

.pricing-sub-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(255, 181, 197, 0.15);
  transition: all var(--transition-bounce);
  position: relative;
  z-index: 1;
}

.pricing-sub-item:hover .pricing-sub-icon {
  border-color: var(--primary-soft);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 181, 197, 0.3);
}

.pricing-sub-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-sub-name {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.pricing-sub-item:hover .pricing-sub-name {
  color: var(--primary-deep);
}

/* ================================
   底部信息区 - 高级设计
   ================================ */
.footer-info-section {
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 181, 197, 0.05) 100%
  );
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 181, 197, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.footer-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  opacity: 0.4;
}

.footer-particle:nth-child(1) {
  top: 15%;
  left: 8%;
  animation: floatParticle 7s ease-in-out infinite;
}
.footer-particle:nth-child(2) {
  top: 45%;
  left: 15%;
  animation: floatParticle 9s ease-in-out infinite 1.5s;
}
.footer-particle:nth-child(3) {
  top: 25%;
  left: 85%;
  animation: floatParticle 8s ease-in-out infinite 0.8s;
}
.footer-particle:nth-child(4) {
  top: 65%;
  left: 75%;
  animation: floatParticle 10s ease-in-out infinite 2s;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.footer-particle:nth-child(5) {
  top: 35%;
  left: 50%;
  animation: floatParticle 7.5s ease-in-out infinite 1s;
  width: 6px;
  height: 6px;
}
.footer-particle:nth-child(6) {
  top: 75%;
  left: 35%;
  animation: floatParticle 9.5s ease-in-out infinite 0.3s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.7;
  }
}

.footer-info-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 181, 197, 0.4);
}

.footer-logo-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 181, 197, 0.2);
  transition: all var(--transition-bounce);
}

.footer-feature svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  display: none;
}

.footer-feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary-soft);
  box-shadow: 0 8px 24px rgba(255, 181, 197, 0.2);
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(255, 181, 197, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  /* overflow: hidden; */
}

/* .footer-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
} */

.footer-mxw-badge {
  position: absolute;
  top: -30px;
  right: 0;
  width: 70px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transform: rotate(8deg);
  z-index: 10;
}

.footer-contact-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-contact-info {
  flex: 1;
  text-align: left;
}

.footer-contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.footer-contact-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 20px;
  line-height: 1.6;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(255, 181, 197, 0.4);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.footer-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.footer-contact-btn:hover::before {
  left: 100%;
}

.footer-contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 32px rgba(255, 181, 197, 0.5);
}

.footer-contact-btn svg {
  width: 20px;
  height: 20px;
}

.footer-contact-qrcode {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.footer-contact-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid var(--bg-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.footer-contact-qrcode-border {
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--primary-soft);
  border-radius: var(--radius-lg);
  animation: rotateBorder 12s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer-contact-wechat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--bg-border);
}

.footer-contact-wechat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-wechat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-deep);
  background: var(--bg-hover);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px dashed var(--primary-soft);
}

.footer-vip-card {
  background: linear-gradient(
    135deg,
    rgba(255, 217, 61, 0.1) 0%,
    rgba(255, 217, 61, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 217, 61, 0.2);
  position: relative;
  overflow: hidden;
  animation: vipCardGlow 2s ease-in-out infinite;
}

@keyframes vipCardGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 217, 61, 0.2);
  }
  50% {
    box-shadow: 0 4px 35px rgba(255, 217, 61, 0.5), 0 0 50px rgba(255, 217, 61, 0.2);
  }
}

.footer-vip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warning), transparent);
}

.footer-vip-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--warning) 0%, #ffc933 100%);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 217, 61, 0.4);
}

.footer-vip-badge svg {
  width: 16px;
  height: 16px;
}

.footer-vip-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 16px;
}

.footer-welcome {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin: 0;
  position: relative;
  display: inline-block;
  animation: welcomeFloat 2.8s ease-in-out infinite;
}

@keyframes welcomeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.footer-welcome::before,
.footer-welcome::after {
  content: "♦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  color: var(--primary);
}

.footer-welcome::before {
  left: -28px;
}
.footer-welcome::after {
  right: -28px;
}

/* ================================
   页脚
   ================================ */
footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 48px 24px 32px;
  text-align: center;
  border-top: 2px solid var(--bg-border);
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  animation: footerLogoGlow 2s ease-in-out infinite;
}

@keyframes footerLogoGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 181, 197, 0.5);
    color: var(--text-dark);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 181, 197, 0.9), 0 0 35px rgba(255, 181, 197, 0.4);
    color: var(--primary);
  }
}

.footer-slogan {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid var(--bg-border);
}

/* ================================
   响应式
   ================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-grid-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .notice-section {
    margin: 0 16px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .pricing-banana {
    margin-bottom: 0;
  }

  .pricing-banana-img {
    max-width: 90%;
  }

  .pricing-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .pricing-sub-item {
    padding: 14px 10px;
  }

  .pricing-sub-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .pricing-sub-name {
    font-size: 0.8rem;
  }

  .pricing-card-icon {
    width: 60px;
    height: 60px;
  }

  .pricing-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .footer-info-section {
    padding: 0 0 50px;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-features {
    gap: 10px;
  }

  .footer-feature {
    font-size: 0.82rem;
    padding: 10px 16px;
  }

  .footer-contact-card {
    padding: 24px 20px;
    flex-direction: column;
    gap: 24px;
  }

  .footer-mxw-badge {
    top: -32px;
    right: 0;
  }

  .footer-contact-main {
    flex-direction: column;
    gap: 24px;
  }

  .footer-contact-info {
    text-align: center;
  }

  .footer-contact-title {
    font-size: 1.1rem;
  }

  .footer-contact-desc {
    font-size: 0.88rem;
  }

  .footer-contact-qrcode {
    width: 100px;
    height: 100px;
  }

  .footer-vip-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .footer-vip-badge {
    align-self: center;
  }

  .footer-vip-text {
    font-size: 0.88rem;
    text-align: center;
  }

  .footer-welcome {
    font-size: 1rem;
  }

  .footer-welcome::before,
  .footer-welcome::after {
    display: none;
  }

  .footer-particle {
    display: none;
  }
}

/* ================================
   下单须知
   ================================ */
.notice-section {
  padding-top: 0;
}

.notice-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.notice-card:hover::before {
  opacity: 1;
}

.page-petals {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.page-petal {
  position: absolute;
  top: -20px;
  background: linear-gradient(135deg, #ffb5c5, #ffd4de);
  border-radius: 50% 0 50% 50%;
  opacity: 0.5;
  animation: fallPetal linear infinite;
}

@keyframes fallPetal {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.page-petal:nth-child(1) {
  left: 5%;
  width: 14px;
  height: 14px;
  animation-duration: 12s;
  animation-delay: 0s;
}
.page-petal:nth-child(2) {
  left: 15%;
  width: 10px;
  height: 10px;
  animation-duration: 14s;
  animation-delay: 2s;
  background: linear-gradient(135deg, #ffd4de, #ffe5ec);
}
.page-petal:nth-child(3) {
  left: 25%;
  width: 8px;
  height: 8px;
  animation-duration: 11s;
  animation-delay: 4s;
}
.page-petal:nth-child(4) {
  left: 35%;
  width: 12px;
  height: 12px;
  animation-duration: 15s;
  animation-delay: 1s;
  background: linear-gradient(135deg, #ffd4de, #ffe5ec);
}
.page-petal:nth-child(5) {
  left: 45%;
  width: 6px;
  height: 6px;
  animation-duration: 13s;
  animation-delay: 3s;
}
.page-petal:nth-child(6) {
  left: 55%;
  width: 16px;
  height: 16px;
  animation-duration: 10s;
  animation-delay: 5s;
}
.page-petal:nth-child(7) {
  left: 65%;
  width: 9px;
  height: 9px;
  animation-duration: 16s;
  animation-delay: 0.5s;
  background: linear-gradient(135deg, #ffd4de, #ffe5ec);
}
.page-petal:nth-child(8) {
  left: 75%;
  width: 11px;
  height: 11px;
  animation-duration: 12s;
  animation-delay: 2.5s;
}
.page-petal:nth-child(9) {
  left: 85%;
  width: 7px;
  height: 7px;
  animation-duration: 14s;
  animation-delay: 1.5s;
  background: linear-gradient(135deg, #ffd4de, #ffe5ec);
}
.page-petal:nth-child(10) {
  left: 95%;
  width: 13px;
  height: 13px;
  animation-duration: 11s;
  animation-delay: 3.5s;
}

.notice-card-header,
.notice-card-body,
.notice-footer {
  position: relative;
  z-index: 1;
}

.notice-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 2px solid var(--bg-border);
  background: linear-gradient(
    135deg,
    rgba(255, 181, 197, 0.12),
    rgba(181, 222, 255, 0.08)
  );
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.notice-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  pointer-events: none;
}

.notice-card-header {
  padding: 0;
  border-bottom: none;
  position: relative;
  z-index: 1;
}

.notice-card-header .section-title {
  margin-bottom: 0;
  text-align: left;
  font-size: 1.6rem;
  color: var(--accent-pink);
  text-shadow: 0 2px 8px rgba(255, 181, 197, 0.3);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.notice-card-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-pink), var(--secondary));
  border-radius: 3px;
}

.notice-gif {
  width: 90px;
  height: 90px;
  object-fit: contain;
  pointer-events: none;
  /* filter: drop-shadow(0 6px 12px rgba(255, 181, 197, 0.4)); */
  transform: rotate(8deg);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-right: -4px;
  margin-top: -12px;
  position: relative;
  z-index: 1;
}

.notice-gif:hover {
  transform: rotate(8deg) scale(1.15) translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(255, 181, 197, 0.5));
}

.notice-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  margin-top: 8px;
  font-weight: 500;
}

.notice-gif-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-gif-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px dashed var(--primary-soft);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.notice-card-body {
  padding: 32px 40px;
}

.notice-block {
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--bg-hover);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  transition: all var(--transition-base);
}

.notice-block:hover {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-sm);
}

.notice-block:last-of-type {
  margin-bottom: 0;
}

.notice-block-title {
  font-size: 1.05rem;
  color: var(--accent-pink);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-icon {
  width: 12px;
  height: 12px;
  color: var(--accent-pink);
  flex-shrink: 0;
  display: none;
}

.notice-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.notice-text:last-child {
  margin-bottom: 0;
}

.notice-text mark,
.notice-footer mark {
  background: transparent;
  color: #e74c3c;
  font-weight: 600;
  padding: 0 2px;
}

.notice-block-warning {
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.06),
    rgba(231, 76, 60, 0.02)
  );
  border: 1px solid rgba(231, 76, 60, 0.15);
}

.notice-block-warning .notice-block-title {
  color: #e74c3c;
}

.notice-block-warning .notice-icon {
  color: #e74c3c;
}

.notice-footer {
  text-align: center;
  padding: 24px 40px 32px;
  border-top: 1px solid var(--bg-border);
  background: linear-gradient(180deg, var(--bg-hover), var(--bg-card));
}

.notice-footer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
  .notice-card-header {
    padding: 24px 20px 20px;
  }

  .notice-card-body {
    padding: 16px;
  }

  .notice-block {
    padding: 16px 18px;
    margin-bottom: 16px;
  }

  .notice-footer {
    padding: 20px 20px 24px;
  }
}
