/* PC Styles - Modern App Download Page */
.logo-wrap {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  margin-bottom: 22px;
}

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

.app-title {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(135deg, #bae6fd, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0 10px;
}

.app-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.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.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  box-shadow: 0 8px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #f0f9ff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}

.progress-section {
  display: none;
  margin-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 8px;
}

.progress-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.footer-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.version {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.tip {
  font-size: 16px;
  color: #fef08a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon {
  margin-right: 8px;
  font-size: 18px;
}

/* Modal styles for PC */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(180deg, #0369a1 0%, #0c4a6e 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  margin: 50vh auto 0;
  transform: translateY(-50%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #f0f9ff;
}

.modal-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.modal-buttons {
  display: flex;
  gap: 15px;
}

.modal-btn {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn.cancel {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn.cancel:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

.modal-btn.confirm {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
}

.modal-btn.confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

/* Version tabs & compat - PC */
.version-tabs {
  padding: 5px;
  margin-bottom: 26px;
}

.version-tab {
  padding: 14px 24px;
  font-size: 16px;
}

.compat-section {
  padding: 22px;
  margin-top: 26px;
}

.compat-title {
  font-size: 15px;
  margin-bottom: 14px;
}

.compat-list {
  font-size: 14px;
  line-height: 1.85;
}
