@charset "UTF-8";

@font-face {
  font-family: 'gothic-icon';
  src: url('data:font/woff2;base64,') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  background: #0d0614;
  color: #e8d5f5;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a:active,
a:focus {
  outline: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  background: linear-gradient(135deg, #e8b4f8, #ff6b9d, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 15px;
  color: #9b7bb5;
  letter-spacing: 1px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 6, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 132, 252, 0.15);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 6, 20, 0.95);
  box-shadow: 0 4px 30px rgba(192, 132, 252, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}

.logo-wrap:hover {
  opacity: 0.85;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #e8b4f8, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #b898d4;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #f0c8ff;
  background: rgba(192, 132, 252, 0.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8d5f5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192, 132, 252, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 180, 248, 0.3);
  animation: floatUp 6s infinite ease-in-out;
}

.hero-particle:nth-child(1) { width: 4px; height: 4px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 5s; }
.hero-particle:nth-child(2) { width: 3px; height: 3px; left: 25%; top: 60%; animation-delay: 1s; animation-duration: 7s; }
.hero-particle:nth-child(3) { width: 5px; height: 5px; left: 40%; top: 30%; animation-delay: 0.5s; animation-duration: 6s; }
.hero-particle:nth-child(4) { width: 3px; height: 3px; left: 55%; top: 70%; animation-delay: 2s; animation-duration: 5.5s; }
.hero-particle:nth-child(5) { width: 4px; height: 4px; left: 70%; top: 25%; animation-delay: 1.5s; animation-duration: 6.5s; }
.hero-particle:nth-child(6) { width: 2px; height: 2px; left: 85%; top: 55%; animation-delay: 0.8s; animation-duration: 4.5s; }
.hero-particle:nth-child(7) { width: 5px; height: 5px; left: 15%; top: 80%; animation-delay: 2.5s; animation-duration: 7s; }
.hero-particle:nth-child(8) { width: 3px; height: 3px; left: 90%; top: 15%; animation-delay: 3s; animation-duration: 5s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  background: linear-gradient(135deg, #f0c8ff, #ff6b9d, #e8b4f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: 4px;
  filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.3));
}

.title-sub {
  display: block;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #c084fc;
  font-weight: 400;
  letter-spacing: 6px;
  margin-top: 8px;
}

.hero-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #9b7bb5;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50px;
}

.btn:hover::before {
  opacity: 1;
}

.btn-android {
  background: linear-gradient(135deg, #6b21a8, #a855f7);
  color: #fff;
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-android::before {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
}

.btn-android:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

.btn-ios {
  background: linear-gradient(135deg, #be185d, #f472b6);
  color: #fff;
  border: 1px solid rgba(244, 114, 182, 0.4);
  box-shadow: 0 4px 20px rgba(244, 114, 182, 0.3);
}

.btn-ios::before {
  background: linear-gradient(135deg, #db2777, #f9a8d4);
}

.btn-ios:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 114, 182, 0.5);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-icon {
  width: 22px;
  height: 22px;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-mockup {
  width: 300px;
  height: 500px;
  border-radius: 30px;
  border: 3px solid rgba(192, 132, 252, 0.3);
  box-shadow: 0 20px 60px rgba(192, 132, 252, 0.25), inset 0 0 30px rgba(192, 132, 252, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 27px;
}

.hero-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 180, 248, 0.03) 0%, transparent 50%, rgba(255, 107, 157, 0.08) 100%);
  pointer-events: none;
}

.mockup-screen {
  text-align: center;
  position: relative;
  z-index: 1;
}

.mockup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mockup-content .icon-comic {
  font-size: 50px;
  animation: pulse 2s infinite ease-in-out;
}

.mockup-content span {
  font-size: 14px;
  color: #c084fc;
  letter-spacing: 2px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  background: rgba(192, 132, 252, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: floatBubble 4s infinite ease-in-out;
  border: 1px solid rgba(232, 180, 248, 0.15);
}

.float-1 { width: 60px; height: 60px; top: 10%; left: -20px; animation-delay: 0s; }
.float-2 { width: 50px; height: 50px; bottom: 20%; right: -10px; animation-delay: 1s; }
.float-3 { width: 45px; height: 45px; top: 40%; right: -30px; animation-delay: 2s; }

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

.stats-bar {
  background: linear-gradient(180deg, rgba(192, 132, 252, 0.05), rgba(255, 107, 157, 0.05));
  border-top: 1px solid rgba(192, 132, 252, 0.08);
  border-bottom: 1px solid rgba(192, 132, 252, 0.08);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item i {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  background: linear-gradient(135deg, #f0c8ff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: #7b5ea7;
  margin-top: 4px;
  letter-spacing: 1px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.update-card {
  background: linear-gradient(145deg, rgba(26, 10, 46, 0.8), rgba(45, 27, 78, 0.8));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(192, 132, 252, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.update-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 12px 40px rgba(192, 132, 252, 0.15);
}

.card-cover {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.update-card:hover .card-cover img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  color: #fff;
}

.card-badge.hot {
  background: linear-gradient(135deg, #e11d48, #f472b6);
}

.card-info {
  padding: 16px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #e8d5f5;
  margin-bottom: 6px;
}

.card-chapter {
  font-size: 13px;
  color: #9b7bb5;
  margin-bottom: 4px;
}

.card-time {
  font-size: 11px;
  color: #6b4d85;
}

.product {
  background: linear-gradient(180deg, transparent, rgba(192, 132, 252, 0.03), transparent);
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-img {
  flex: 0 0 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(192, 132, 252, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.showcase-text {
  flex: 1;
}

.showcase-text h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #f0c8ff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-text h3 i {
  font-size: 28px;
}

.showcase-text p {
  font-size: 15px;
  color: #9b7bb5;
  line-height: 1.9;
}

.features {
  background: rgba(13, 6, 20, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(26, 10, 46, 0.6), rgba(45, 27, 78, 0.6));
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(192, 132, 252, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(192, 132, 252, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.25);
  box-shadow: 0 20px 50px rgba(192, 132, 252, 0.12);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(244, 114, 182, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(192, 132, 252, 0.15);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e8d5f5;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 14px;
  color: #7b5ea7;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(192, 132, 252, 0.5), rgba(244, 114, 182, 0.3), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  border: 3px solid #1a0a2e;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.timeline-content {
  background: linear-gradient(145deg, rgba(26, 10, 46, 0.7), rgba(45, 27, 78, 0.7));
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(192, 132, 252, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 8px 30px rgba(192, 132, 252, 0.1);
}

.timeline-version {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(192, 132, 252, 0.2));
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #c084fc;
  margin-right: 10px;
}

.timeline-date {
  font-size: 13px;
  color: #6b4d85;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e8d5f5;
  margin: 12px 0 10px;
}

.timeline-content ul {
  list-style: none;
}

.timeline-content ul li {
  font-size: 14px;
  color: #9b7bb5;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.timeline-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c084fc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: linear-gradient(145deg, rgba(26, 10, 46, 0.7), rgba(45, 27, 78, 0.7));
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(192, 132, 252, 0.1);
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.25);
  box-shadow: 0 15px 40px rgba(192, 132, 252, 0.12);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 18px;
}

.review-text {
  font-size: 14px;
  color: #b898d4;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(192, 132, 252, 0.1);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.review-user strong {
  display: block;
  font-size: 14px;
  color: #e8d5f5;
  font-weight: 500;
}

.review-user span {
  font-size: 12px;
  color: #6b4d85;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(192, 132, 252, 0.05), rgba(255, 107, 157, 0.05), transparent);
}

.cta-content {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, rgba(26, 10, 46, 0.8), rgba(45, 27, 78, 0.8));
  border-radius: 30px;
  border: 1px solid rgba(192, 132, 252, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.1), transparent);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  background: linear-gradient(135deg, #f0c8ff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-content p {
  font-size: 16px;
  color: #9b7bb5;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer {
  background: rgba(8, 3, 12, 0.9);
  border-top: 1px solid rgba(192, 132, 252, 0.1);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(192, 132, 252, 0.08);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: #6b4d85;
  margin-top: 12px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 14px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 14px;
  color: #7b5ea7;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #c084fc;
}

.footer-contact ul li {
  font-size: 14px;
  color: #7b5ea7;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact ul li i {
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #4a3066;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-mockup {
    width: 200px;
    height: 360px;
  }

  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .showcase-img {
    flex: 0 0 auto;
    max-width: 280px;
  }

  .showcase-text h3 {
    justify-content: center;
  }

  .updates-grid,
  .features-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(13, 6, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(192, 132, 252, 0.15);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .updates-grid,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-mockup {
    width: 160px;
    height: 280px;
    border-radius: 20px;
  }

  .section {
    padding: 50px 0;
  }

  .cta-content {
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .showcase-img {
    max-width: 220px;
  }

  .hero-float {
    display: none;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    padding-left: 20px;
  }

  .timeline-dot {
    left: -16px;
    width: 10px;
    height: 10px;
  }
}

.floating-download {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(13, 6, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(192, 132, 252, 0.15);
  z-index: 999;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}

.floating-download.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.btn-float {
  padding: 10px 22px;
  font-size: 14px;
}

.btn-float .btn-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .floating-download {
    bottom: 16px;
    gap: 8px;
    padding: 8px;
  }

  .btn-float {
    padding: 8px 14px;
    font-size: 13px;
  }

  .btn-float .btn-icon {
    width: 16px;
    height: 16px;
  }

  .btn-float span {
    white-space: nowrap;
  }

  .footer-contact-hide {
    display: none;
  }
}
