/* ===================帝王云 ==================== */
/* ============= www.diwangyun.com ================ */
/* ============= www.diwangyun.cn ================= */
/* ============== 代码有价，版权无价 ================= */
/* =======帝王云模板为帝王云自行开发，已办理源码著作权 ========== */
/* =======未经允许 仿站或扒站 发现必究，请尊重开发者心血 ========== */
/* ==========="愿你走完山水万城 仍与理想重逢" ============ */
/* ============模板作者：江遇:QQ 1481234828=========== */

/* Hero区域按钮样式增强 */
.hero-buttons {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

/* 确保Hero按钮可以点击 */
.hero-buttons a.btn {
  position: relative;
  z-index: 1001;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 白色按钮 */
.hero-buttons a.btn-white {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #0a0a0a;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3),
              0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-buttons a.btn-white:hover {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4),
              0 0 30px rgba(255, 255, 255, 0.2),
              0 0 0 2px rgba(255, 255, 255, 0.5);
}

.hero-buttons a.btn-white:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* 边框按钮 */
.hero-buttons a.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 transparent;
}

.hero-buttons a.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2),
              0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-buttons a.btn-outline:active {
  transform: translateY(0) scale(0.98);
  background: rgba(255, 255, 255, 0.15);
}

/* 按钮焦点状态 */
.hero-buttons a.btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons a.btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* 确保按钮不被任何元素遮挡 */
.hero-content {
  position: relative;
  z-index: 10;
}

.hero-text {
  position: relative;
  z-index: 11;
}
