/* ========== 超级无敌炫酷吊炸天样式 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
  position: relative;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  overflow-x: hidden;
}

/* 炫彩动态背景 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255,0,128,0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0,255,255,0.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* 超级水泡背景 */
.bubbles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.15));
  box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 5px rgba(0,255,255,0.5);
  animation: rise linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
    transform: translateY(-60vh) scale(1.1);
  }
  100% {
    transform: translateY(-120vh) scale(1.4);
    opacity: 0;
  }
}

/* SEO隐藏h1 */
.seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  white-space: nowrap;
}

/* 视觉主标题 - 炫彩流光 */
.hero-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00ff88, #ff0080, #ff8c00, #00bfff, #00ff88);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  z-index: 2;
  position: relative;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.1s, gradientFlow 3s ease infinite;
  text-shadow: 0 0 30px rgba(0,255,136,0.3);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title::before,
.hero-title::after {
  content: '⚡';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  animation: lightning 1s ease-in-out infinite;
}

.hero-title::before {
  left: -40px;
}

.hero-title::after {
  right: -40px;
}

@keyframes lightning {
  0%, 100% { opacity: 0.3; text-shadow: 0 0 5px #ff0080; }
  50% { opacity: 1; text-shadow: 0 0 20px #ff0080, 0 0 30px #ff8c00; }
}

.hero-sub {
  text-align: center;
  font-size: 1rem;
  background: linear-gradient(135deg, #ffd700, #ff69b4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s;
  font-weight: 600;
  letter-spacing: 2px;
}

/* 头像 - 超级炫酷光环 */
.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 0 0 rgba(0,255,255,0.7), 0 0 0 0 rgba(255,0,128,0.7), 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  animation: avatarGlow 2s ease-in-out infinite, avatarFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
}

@keyframes avatarGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0,255,255,0.4), 0 0 0 0 rgba(255,0,128,0.4), 0 10px 30px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0,255,255,0.2), 0 0 0 15px rgba(255,0,128,0.15), 0 15px 40px rgba(0,0,0,0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,255,255,0), 0 0 0 0 rgba(255,0,128,0), 0 10px 30px rgba(0,0,0,0.3);
  }
}

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

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== 按钮布局 ========== */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 700px;
  margin: 20px auto 0;
  padding: 0 20px;
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards 0.3s;
}

/* 按钮通用样式 - 超级炫酷 */
.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 220px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* 172号卡按钮 - 蓝色系 */
.btn.left {
  background: linear-gradient(135deg, #00ACC1, #00838F, #006064);
  background-size: 200% 100%;
  animation: btnFlow 3s ease infinite;
}

/* 飞利猫按钮 - 紫色系 */
.btn.right {
  background: linear-gradient(135deg, #7B1FA2, #9C27B0, #E040FB);
  background-size: 200% 100%;
  animation: btnFlow 3s ease infinite 0.5s;
}

/* 号卡之家（靓号）按钮 - 橙红系带特效 */
.btn.haoka {
  background: linear-gradient(135deg, #FF5722, #FF9800, #FFC107);
  background-size: 200% 100%;
  animation: btnFlow 3s ease infinite 1s;
  position: relative;
}

.btn.haoka::after {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 30px;
  box-shadow: 0 2px 15px rgba(255,215,0,0.6);
  transform: rotate(8deg);
  letter-spacing: 1px;
  animation: badgeBounce 1.5s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: rotate(8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.1); }
}

@keyframes btnFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.3);
}

/* 按钮炫光扫过效果 */
.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.btn:hover::before {
  left: 30%;
  opacity: 1;
  animation: shimmer 0.8s linear forwards;
}

@keyframes shimmer {
  0% { transform: translateX(-50%) rotate(25deg); }
  100% { transform: translateX(50%) rotate(25deg); }
}

/* 按钮涟漪效果 */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  transform: scale(0);
  animation: rippleAnim 0.6s linear forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(6);
    opacity: 0;
  }
}

/* 工作时间说明 - 炫彩卡片 */
.worktime {
  font-size: 15px;
  text-align: center;
  max-width: 90%;
  margin-top: 35px;
  z-index: 2;
  position: relative;
  cursor: default;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 20px 25px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.worktime:hover {
  transform: translateY(-5px);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 30px rgba(255,0,128,0.2);
}

.worktime > div {
  display: block;
  opacity: 0;
  animation: textFade 0.8s forwards;
  margin-bottom: 0.6em;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 20px;
}

.worktime > div:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.1);
}

@keyframes textFade {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

.worktime > div:nth-child(1){ animation-delay:0.2s; }
.worktime > div:nth-child(2){ animation-delay:0.6s; }
.worktime > div:nth-child(3){ animation-delay:1s; }
.worktime > div:nth-child(4){ animation-delay:1.4s; }
.worktime > div:nth-child(5){ animation-delay:1.8s; }

.line1 {
  color: #00ff88;
  font-size: 1.2rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
}
.line2 { color: #00bfff; }
.line3 { color: #ff69b4; }
.line4 { color: #ffd700; }
.line5 { color: #ff8c00; }

/* 页脚版权 */
.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  position: fixed;
  bottom: 12px;
  width: 100%;
  z-index: 99;
  background: transparent;
  letter-spacing: 1px;
}

.copyright a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #00ff88;
  text-shadow: 0 0 8px rgba(0,255,136,0.5);
}

/* 自定义炫酷光标 */
.cursor {
  width: 20px;
  height: 20px;
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, #00ff88, #ff0080);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
  z-index: 9999;
  mix-blend-mode: difference;
  box-shadow: 0 0 15px rgba(0,255,136,0.5);
}

/* 移动端适配 */
@media (max-width: 600px) {
  .avatar { width: 100px; height: 100px; margin-bottom: 20px; }
  .hero-title { font-size: 1.6rem; }
  .hero-title::before,
  .hero-title::after {
    font-size: 1.2rem;
    left: -25px;
    right: -25px;
  }
  .hero-title::before { left: -25px; }
  .hero-title::after { right: -25px; }
  .hero-sub { font-size: 0.8rem; }
  
  .nav {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin: 15px 0 0;
    padding: 0 16px;
  }
  
  .btn {
    width: 280px;
    min-width: auto;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .worktime {
    font-size: 12px;
    padding: 15px 18px;
    margin-top: 25px;
  }
  
  .line1 { font-size: 1rem; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== 分割线区域 - 炫光效果 ========== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 20px;
  gap: 15px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff69b4, #ff8c00, #ff69b4, transparent);
  background-size: 200% 100%;
  animation: lineFlow 3s linear infinite;
  border-radius: 2px;
}

@keyframes lineFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.divider-text {
  font-size: 12px;
  background: linear-gradient(135deg, #ff69b4, #ff8c00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 3px;
  font-weight: 600;
  padding: 0 10px;
  position: relative;
}

.divider-text::before,
.divider-text::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff69b4;
}

.divider-text::before {
  left: -15px;
}

.divider-text::after {
  right: -15px;
}