@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #F1F8E9;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

.icon-home::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/home.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-menu::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/menu.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-check::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-refresh::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/refresh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-cloud::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/cloud.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-device::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/device.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-star::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-user::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/user.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-globe::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/globe.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-done::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/done.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-info::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/info.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-message::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/message.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-clock::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/clock.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-mail::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-bookmark::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/bookmark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-translate::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/translate.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-person::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/person.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-layers::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../icons/layers.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-android {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/安卓.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

.icon-apple {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/苹果.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(46, 125, 50, 0.08);
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #2E7D32;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-logo span {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  position: relative;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
  padding: 8px 0;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4CAF50, #2E7D32);
  transition: width 0.3s;
}

.nav-menu li a:hover {
  color: #4CAF50;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #4CAF50;
  border-radius: 3px;
  transition: all 0.3s;
}

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 50%, #DCEDC8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2E7D32;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #4CAF50;
}

.stat-label {
  font-size: 14px;
  color: #888;
}

.hero-download {
  display: flex;
  gap: 20px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.download-btn.android {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: #fff;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.download-btn.apple {
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: #fff;
  box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.download-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-btn .btn-text small {
  font-size: 12px;
  opacity: 0.8;
}

.download-btn .btn-text span {
  font-size: 16px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  text-align: center;
}

.hero-img {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: bold;
  color: #2E7D32;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.comic-updates {
  background: #fff;
}

.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.updates-list {
  background: #F1F8E9;
  border-radius: 16px;
  padding: 30px;
}

.updates-list h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.update-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e8e8e8;
}

.update-item:last-child {
  border-bottom: none;
}

.update-cover {
  width: 60px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.update-info h4 {
  font-size: 15px;
  color: #333;
  margin-bottom: 5px;
}

.update-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.update-tag {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #E8F5E9;
  color: #4CAF50;
}

.update-tag.hot {
  background: #fce4ec;
  color: #e91e63;
}

.update-time {
  font-size: 12px;
  color: #999;
}

.updates-highlight {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
}

.updates-highlight h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-banner {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.highlight-banner h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.highlight-banner p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.highlight-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #ff5722;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 10px;
}

.features {
  background: linear-gradient(180deg, #F1F8E9 0%, #fff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8F5E9, #C5E1A5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 28px;
  color: #4CAF50;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.showcase {
  background: #fff;
}

.showcase-scroll-wrapper {
  position: relative;
}

.showcase-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.showcase-grid::-webkit-scrollbar {
  display: none;
}

.showcase-item {
  flex: 0 0 250px;
  width: 250px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  background: #F1F8E9;
}

.showcase-item:hover {
  transform: scale(1.02);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.showcase-item .showcase-info {
  padding: 15px;
  background: #fff;
  flex-shrink: 0;
}

.showcase-item h4 {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.showcase-item p {
  font-size: 12px;
  color: #999;
}

.showcase-scrollbar {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 8px;
}

.showcase-scrollbar-track {
  width: 100%;
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  cursor: pointer;
}

.showcase-scrollbar-thumb {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  border-radius: 2px;
  min-width: 40px;
  cursor: grab;
  position: relative;
}

.showcase-scrollbar-thumb:active {
  cursor: grabbing;
}

.version {
  background: linear-gradient(180deg, #fff 0%, #F1F8E9 100%);
}

.version-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.version-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.version-left {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.version-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.version-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #4CAF50;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
}

.version-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.version-content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.version-content ul {
  padding-left: 20px;
}

.version-content li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  list-style: disc;
}

.device-check {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: #fff;
}

.device-check .section-title h2,
.device-check .section-title p {
  color: #fff;
}

.device-check .section-title p {
  opacity: 0.9;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.device-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.device-spec {
  text-align: left;
}

.device-spec li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.device-spec li:last-child {
  border-bottom: none;
}

.device-spec .spec-label {
  opacity: 0.8;
}

.device-spec .spec-value {
  font-weight: 600;
}

.reviews {
  background: #F1F8E9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F5E9, #C5E1A5);
}

.review-user h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}

.review-stars {
  color: #ff9800;
  font-size: 14px;
}

.review-content {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.review-stats {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.review-stat {
  text-align: center;
}

.review-stat .stat-num {
  font-size: 36px;
  font-weight: bold;
  color: #4CAF50;
}

.review-stat .stat-text {
  font-size: 14px;
  color: #666;
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #F1F8E9;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #E8F5E9;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: #4CAF50;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.download-section {
  background: linear-gradient(135deg, #E8F5E9 0%, #C5E1A5 100%);
  text-align: center;
}

.download-section h2 {
  font-size: 36px;
  color: #2E7D32;
  margin-bottom: 15px;
}

.download-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.download-buttons .download-btn {
  padding: 16px 32px;
  font-size: 18px;
}

footer {
  background: #1B5E20;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

.floating-download {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 999;
}

.floating-download .download-btn {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .features-grid,
  .device-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-item {
    flex: 0 0 200px;
    width: 200px;
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .nav {
    height: 60px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-logo img {
    width: 30px;
    height: 30px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .stat-number {
    font-size: 26px;
  }

  .hero-download {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-img {
    max-width: 260px;
  }

  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .updates-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .device-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item {
    flex: 0 0 160px;
    width: 160px;
    height: 290px;
  }

  .review-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .review-stat .stat-num {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .floating-download {
    bottom: 20px;
    right: 15px;
    left: 15px;
    justify-content: center;
  }

  .floating-download .download-btn {
    flex: 1;
    justify-content: center;
  }

  .download-section h2 {
    font-size: 28px;
  }

  .version-item {
    flex-direction: column;
    gap: 15px;
  }

  .version-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .stat-number {
    font-size: 24px;
  }

  .showcase-item {
    flex: 0 0 140px;
    width: 140px;
    height: 250px;
  }

  .download-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .download-btn .btn-text span {
    font-size: 14px;
  }
}