/* 毛玻璃风格样式 */
:root {
  --primary-color: #7e57c2;
  --secondary-color: #5e35b1;
  --accent-color: #b388ff;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --background-blur: 15px;
  --card-bg: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.15);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 背景模糊层 */
.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgzMCwgMzIsIDQ4LCAwLjMpIi8+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  backdrop-filter: blur(var(--background-blur));
  z-index: -1;
}

/* 主容器 */
.frosted-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

/* 应用头部 */
.frosted-header {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.frosted-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(30deg);
  transition: var(--transition);
}

.frosted-header:hover::before {
  transform: rotate(60deg);
}

.frosted-logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.frosted-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.2);
}

.frosted-logo img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  transition: var(--transition);
}

.frosted-title-container {
  width: 100%;
  padding: 0 20px;
}

.frosted-title {
  font-size: 2.5rem;
  margin: 20px 0 10px;
  text-align: center;
  width: 100%;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.frosted-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: var(--transition);
}

.frosted-header:hover .frosted-title::after {
  width: 150px;
}

.frosted-price {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 15px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.frosted-header:hover .frosted-price {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* 应用描述 */
.frosted-description {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-align: center;
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
}

.frosted-description:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

/* 通用卡片样式 */
.frosted-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.frosted-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.frosted-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.frosted-card h3 {
  margin-bottom: 20px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.frosted-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: var(--transition);
}

.frosted-card:hover h3::after {
  width: 100px;
}

/* 区域标题 */
.frosted-section {
  margin-bottom: 40px;
}

.frosted-section-title {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.frosted-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background: var(--accent-color);
  border-radius: 3px;
  transition: var(--transition);
}

.frosted-section-title:hover::before {
  height: 34px;
  background: var(--primary-color);
}

/* 视频卡片 */
.frosted-video-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--card-bg);
  position: relative;
  transform: translateY(0);
  transition: var(--transition);
  margin-bottom: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
}

.frosted-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* 视频缩略图 */
.frosted-video-thumbnail {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  border-radius: 16px;
  transition: var(--transition);
}

.frosted-video-thumbnail:hover {
  transform: scale(1.02);
}

/* 视频播放按钮 */
.frosted-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  opacity: 0.8;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frosted-video-wrapper {
  position: relative;
  cursor: pointer;
}

.frosted-video-wrapper:hover .frosted-video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

/* 截图网格 */
.frosted-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.frosted-screenshot {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--card-bg);
  position: relative;
  transform: translateY(0);
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
}

.frosted-screenshot:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.frosted-screenshot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.frosted-screenshot:hover img {
  transform: scale(1.05);
}

/* 下载区域 */
.frosted-downloads {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.frosted-download-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.frosted-download-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.frosted-download-icon {
  font-size: 1.8rem;
  min-width: 50px;
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  transition: var(--transition);
}

.frosted-download-item:hover .frosted-download-icon {
  transform: scale(1.2);
  color: var(--primary-color);
}

.frosted-download-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.frosted-download-name {
  font-weight: 600;
  font-size: 1.1rem;
}

/* 统计区域 */
.frosted-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.frosted-stat-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.frosted-stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.frosted-stat-icon {
  font-size: 1.8rem;
  min-width: 50px;
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  transition: var(--transition);
}

.frosted-stat-item:hover .frosted-stat-icon {
  transform: scale(1.2);
  color: var(--primary-color);
}

.frosted-stat-details {
  flex: 1;
}

.frosted-stat-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.frosted-stat-count {
  font-size: 1.3rem;
  font-weight: 700;
}

/* 联系方式和链接区域 */
.frosted-contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.frosted-contacts, .frosted-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.frosted-contact-item, .frosted-link-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.frosted-contact-item:hover, .frosted-link-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.frosted-contact-icon, .frosted-link-icon {
  font-size: 1.5rem;
  min-width: 40px;
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  transition: var(--transition);
}

.frosted-contact-item:hover .frosted-contact-icon, 
.frosted-link-item:hover .frosted-link-icon {
  transform: scale(1.2);
  color: var(--primary-color);
}

.frosted-contact-info, .frosted-link-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.frosted-contact-type, .frosted-link-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.frosted-contact-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 按钮样式 */
.frosted-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.frosted-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 复制成功提示 */
.frosted-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.frosted-notification.show {
  opacity: 1;
}

/* 页脚 */
.frosted-footer {
  text-align: center;
  padding: 40px 0 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 30px;
  position: relative;
}

.frosted-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .frosted-contact-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .frosted-stats {
    grid-template-columns: 1fr;
  }
  
  .frosted-screenshots {
    grid-template-columns: 1fr;
  }
  
  .frosted-header {
    padding: 30px 0;
  }
  
  .frosted-logo {
    width: 100px;
    height: 100px;
  }
  
  .frosted-title {
    font-size: 2rem;
  }
  
  .frosted-download-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}