@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Inter:wght@300;400;500;600;700&display=swap");
/* ===== 基础样式重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  /* 间距 */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  /* 圆角 */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  /* 过渡 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #0f0f1a 50%, #0a0a0f 100%); }

.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 173, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 173, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.5; }

.floating-element {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 173, 255, 0.1) 0%, transparent 70%);
  z-index: -1; }

.floating-element-1 {
  top: 10%;
  left: 5%;
  animation: floating 8s ease-in-out infinite; }

.floating-element-2 {
  bottom: 10%;
  right: 5%;
  animation: floating 10s ease-in-out infinite reverse; }

@keyframes typing {
  from {
    width: 0; }
  to {
    width: 100%; } }
.typewriter {
  overflow: hidden;
  border-right: 3px solid #00adff;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite; }

.glow-text {
  text-shadow: 0 0 10px rgba(0, 173, 255, 0.7), 0 0 20px rgba(0, 173, 255, 0.5); }

.glass-card {
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1); }

.stat-card {
  text-align: center;
  background: rgba(20, 25, 40, 0.6);
  border: 1px solid rgba(0, 173, 255, 0.1); }

.download-tips {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.95);
  text-align: right; }

.platform-name {
  font-family: 'Orbitron', sans-serif; }

@keyframes scan {
  0% {
    top: 0; }
  100% {
    top: 100%; } }
.scan-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(0, 173, 255, 0.7), transparent);
  z-index: 999;
  animation: scan 8s linear infinite;
  box-shadow: 0 0 15px rgba(0, 173, 255, 0.5); }

@keyframes scan {
  0% {
    top: 0; }
  100% {
    top: 100%; } }
.preview-wrapper {
  display: flex;
  justify-content: center;
  padding: var(--spacing-md); }

.preview-device {
  perspective: 1000px; }

.device-frame {
  width: 1024px;
  height: 461px;
  background: linear-gradient(145deg, #212121, #1a1a1a);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-normal); }
  .device-frame img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg); }

.device-frame:hover {
  transform: rotateY(0deg) rotateX(0deg); }

.device-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #ff0000, #ff9900, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
  background-size: 400% 400%;
  filter: blur(8px);
  animation: gradient-flow 4s ease infinite; }

@keyframes gradient-flow {
  0%, 100% {
    background-position: 0 50%; }
  50% {
    background-position: 100% 50%; } }
.platform-card {
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 255, 0.2);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1; }

.platform-card.rounded-md {
  border-radius: 0.375rem; }

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 173, 255, 0.1) 0%, transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease; }

.platform-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 173, 255, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 173, 255, 0.3), inset 0 0 20px rgba(0, 173, 255, 0.1); }

.platform-card:hover::before {
  opacity: 1; }

.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease; }

.platform-card:hover .platform-icon {
  transform: scale(1.1); }

.ios-icon {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1); }

.android-icon {
  background: linear-gradient(135deg, #3DDC84 0%, #0F9D58 100%);
  color: #0c0c0c;
  box-shadow: 0 5px 15px rgba(61, 220, 132, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2); }

.windows-icon {
  background: linear-gradient(135deg, #0078D7 0%, #005A9E 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 120, 215, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2); }

.download-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, #00adff 0%, #0095e0 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1; }

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1; }

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 173, 255, 0.4); }

.download-btn:hover::before {
  left: 100%; }

.download-btn:active {
  transform: translateY(-1px); }

.version-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00adff, #0095e0);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600; }

.pulse {
  animation: pulse 2s infinite; }

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 173, 255, 0.4); }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 173, 255, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 173, 255, 0); } }
.floating {
  animation: floating 6s ease-in-out infinite; }

@keyframes floating {
  0% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-15px); }
  100% {
    transform: translateY(0px); } }
/* 移动端菜单动画 */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease; }

.mobile-menu.open {
  transform: translateX(0); }

.swal2-actions button {
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem; }

.competitor-list a:nth-child(5n) {
  background-color: rgba(147, 51, 234, 0.3); }
.competitor-list a:nth-child(5n+1) {
  background-color: rgba(251, 191, 36, 0.3); }
.competitor-list a:nth-child(5n+2) {
  background-color: rgba(0, 173, 255, 0.3); }
.competitor-list a:nth-child(5n+3) {
  background-color: rgba(74, 222, 128, 0.3); }
.competitor-list a:nth-child(5n+4) {
  background-color: rgba(248, 113, 113, 0.3); }

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 48px;
  border-radius: 2px; }

.pagination > li {
  display: inline; }

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px; }

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #999999;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 255, 0.2);
  cursor: not-allowed; }

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  color: #dedede;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 255, 0.2);
  margin-left: -1px; }

.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #00adff;
  border-color: #00adff;
  cursor: default; }

/* ===== 渐变文字动画 ===== */
/* 使用 CSS @property 实现真正流畅的角度动画 */
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false; }
.gradient-text {
  background: linear-gradient(var(--gradient-angle), #ffffff, #00adff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientRotate 4s linear infinite; }

@keyframes gradientRotate {
  0% {
    --gradient-angle: 0deg; }
  100% {
    --gradient-angle: 360deg; } }

/*# sourceMappingURL=common.css.map */
