/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e50;
  background: #f5f6fa;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; }
strong { color: #e74c3c; }

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

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(90deg, #1a1a2e, #16213e);
  color: #aaa;
  font-size: 12px;
  padding: 6px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-text strong { color: #f39c12; font-size: 14px; }
.top-bar-links a { color: #aaa; margin-left: 15px; transition: color .2s; }
.top-bar-links a:hover { color: #f39c12; }

/* ===== Header ===== */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo a { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 20px; font-weight: 700; color: #c0392b; }
.nav { display: flex; gap: 8px; }
.nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  color: #555;
  transition: all .25s;
}
.nav a:hover, .nav a.active {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
}
.header-search { display: flex; align-items: center; }
.header-search input {
  width: 200px;
  padding: 8px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 20px 0 0 20px;
  font-size: 13px;
  outline: none;
  transition: border-color .3s;
}
.header-search input:focus { border-color: #c0392b; }
.header-search button {
  padding: 8px 14px;
  background: #c0392b;
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-size: 14px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(231,76,60,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { display: flex; align-items: center; gap: 40px; position: relative; z-index: 1; }
.hero-content { flex: 1.2; }
.hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; background: linear-gradient(90deg, #f39c12, #e74c3c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 15px; color: #bbb; margin-bottom: 25px; }
.hero-stats { display: flex; gap: 30px; margin-bottom: 25px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: #f39c12; }
.stat-label { font-size: 12px; color: #999; }
.hero-actions { display: flex; gap: 12px; }
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(231,76,60,.4); }
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); }

.hero-visual { flex: 0.8; }
.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px;
}
.hero-card-title { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: #f39c12; }
.hero-card-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: padding-left .2s;
}
.hero-card-item:hover { padding-left: 5px; }
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item .rank {
  width: 24px; height: 24px; line-height: 24px;
  text-align: center; border-radius: 50%;
  background: rgba(255,255,255,.1); font-size: 12px; font-weight: 700;
}
.hero-card-item:first-child .rank { background: #f39c12; color: #1a1a2e; }
.hero-card-item:nth-child(2) .rank { background: #e74c3c; color: #fff; }
.hero-card-item:nth-child(3) .rank { background: #3498db; color: #fff; }
.hero-card-item .name { flex: 1; font-size: 13px; }
.hero-card-item .tag {
  font-size: 10px; padding: 2px 6px; border-radius: 3px;
  background: rgba(255,255,255,.1);
}
.hero-card-item .tag.hot { background: #e74c3c; color: #fff; }
.hero-card-item .tag.new { background: #27ae60; color: #fff; }

/* ===== Section ===== */
.section { padding: 40px 0; }
.section-dark { background: #fff; }
.section-title {
  font-size: 20px; font-weight: 700; color: #1a1a2e;
  margin-bottom: 20px; padding-left: 12px;
  border-left: 4px solid #c0392b;
}
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-header .section-title { margin-bottom: 0; }
.section-more { color: #c0392b; font-size: 13px; font-weight: 500; }
.section-more:hover { text-decoration: underline; }
.section-desc { color: #888; font-size: 13px; }

/* ===== Server Grid (Home) ===== */
.server-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.server-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  display: flex; align-items: center; gap: 15px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.server-card:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0,0,0,.1); }
.server-card .sc-rank {
  width: 32px; height: 32px; line-height: 32px;
  text-align: center; border-radius: 8px;
  font-weight: 800; font-size: 14px;
  background: #f0f0f0; color: #666;
}
.server-card:nth-child(1) .sc-rank { background: #f39c12; color: #fff; }
.server-card:nth-child(2) .sc-rank { background: #e74c3c; color: #fff; }
.server-card:nth-child(3) .sc-rank { background: #3498db; color: #fff; }
.sc-info { flex: 1; }
.sc-name { font-weight: 700; font-size: 15px; color: #1a1a2e; }
.sc-meta { font-size: 12px; color: #888; margin-top: 4px; }
.sc-meta span { margin-right: 10px; }
.sc-status { text-align: right; }
.sc-tag {
  display: inline-block; font-size: 11px; padding: 2px 8px;
  border-radius: 10px; font-weight: 500;
}
.sc-tag.open { background: #d4edda; color: #155724; }
.sc-tag.soon { background: #fff3cd; color: #856404; }
.sc-tag.full { background: #f8d7da; color: #721c24; }
.sc-players { font-size: 11px; color: #888; margin-top: 4px; }

/* ===== Version Cards ===== */
.version-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.version-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  border: 1px solid transparent;
}
.version-card:hover {
  background: #fff;
  border-color: #c0392b;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(192,57,43,.12);
}
.version-icon { font-size: 40px; margin-bottom: 10px; }
.version-card h3 { font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.version-card p { font-size: 13px; color: #777; line-height: 1.6; }
.version-count { display: inline-block; margin-top: 10px; font-size: 12px; color: #c0392b; font-weight: 600; }

/* ===== Content Grid (2 col) ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

/* News Cards */
.news-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 1px 5px rgba(0,0,0,.04);
  display: flex; gap: 15px;
  transition: box-shadow .2s;
}
.news-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,.08); }
.news-badge {
  display: inline-block; font-size: 10px; padding: 2px 6px;
  border-radius: 3px; color: #fff; font-weight: 600;
  height: fit-content; white-space: nowrap;
}
.news-badge.new { background: #27ae60; }
.news-badge.hot { background: #e74c3c; }
.news-content { flex: 1; }
.news-content h3 { font-size: 16px; margin-bottom: 6px; line-height: 1.4; }
.news-content h3 a:hover { color: #c0392b; }
.news-content p { font-size: 13px; color: #777; line-height: 1.6; }
.news-meta { margin-top: 8px; font-size: 12px; color: #999; }
.news-meta span { margin-right: 15px; }

/* Sidebar */
.sidebar { }
.side-widget {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 5px rgba(0,0,0,.04);
}
.widget-title { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #eee; }

.rank-list { }
.rank-item { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid #f5f5f5; }
.rank-item:last-child { border-bottom: none; }
.rank-no { width: 28px; height: 28px; line-height: 28px; text-align: center; border-radius: 6px; font-weight: 700; font-size: 13px; background: #f0f0f0; color: #666; margin-right: 10px; }
.rank-no.rank-1 { background: #f39c12; color: #fff; }
.rank-no.rank-2 { background: #e74c3c; color: #fff; }
.rank-no.rank-3 { background: #3498db; color: #fff; }
.rank-name { flex: 1; font-size: 13px; }
.rank-hot { font-size: 12px; color: #e74c3c; }

/* Trend Chart */
.trend-bar { display: flex; align-items: center; margin-bottom: 8px; gap: 8px; }
.trend-label { width: 60px; font-size: 12px; color: #666; }
.trend-fill { flex: 1; height: 16px; background: linear-gradient(90deg, #c0392b, #e74c3c); border-radius: 8px; transition: width 1s ease; }
.trend-val { font-size: 12px; font-weight: 600; color: #333; width: 35px; }
.trend-note { font-size: 11px; color: #999; margin-top: 10px; }

/* Dynamic List */
.dynamic-list { }
.dynamic-item { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid #f5f5f5; font-size: 12px; }
.dynamic-item:last-child { border-bottom: none; }
.dyn-time { color: #c0392b; font-weight: 600; white-space: nowrap; }
.dyn-text { color: #555; }

/* Reviews */
.review-list { }
.review-item { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.review-item:last-child { border-bottom: none; }
.review-user { font-size: 13px; font-weight: 600; color: #333; }
.review-stars { font-size: 12px; margin: 2px 0; }
.review-item p { font-size: 12px; color: #777; line-height: 1.5; }

/* Trust Section */
.trust-section { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { text-align: center; color: #fff; }
.trust-icon { font-size: 42px; margin-bottom: 12px; }
.trust-item h3 { font-size: 16px; margin-bottom: 8px; color: #f39c12; }
.trust-item p { font-size: 13px; color: #aaa; line-height: 1.6; }

/* Friend Links */
.friend-links { display: flex; flex-wrap: wrap; gap: 12px; }
.friend-links a {
  display: inline-block;
  padding: 8px 18px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  color: #555;
  transition: all .2s;
}
.friend-links a:hover { background: #c0392b; color: #fff; border-color: #c0392b; }

/* Footer */
.footer { background: #1a1a2e; color: #aaa; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #999; font-size: 13px; }
.footer-col ul li a:hover { color: #f39c12; }
.footer-about { font-size: 12px; color: #888; line-height: 1.8; }
.footer-divider { border-top: 1px solid rgba(255,255,255,.1); margin: 25px 0 15px; }
.footer-bottom { text-align: center; font-size: 12px; color: #777; }
.footer-disclaimer { margin-top: 8px; font-size: 11px; color: #666; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ===== Page Header (list/download) ===== */
.page-header {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  padding: 35px 0;
  text-align: center;
}
.page-header h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.page-header p { font-size: 14px; opacity: .9; }
.highlight-num { font-size: 20px; font-weight: 800; color: #fff; }

/* ===== Filter ===== */
.filter-section {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.filter-section .container { display: flex; justify-content: space-between; align-items: center; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  background: #f5f6fa;
  color: #555;
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active { background: #c0392b; color: #fff; }
.filter-sort { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.filter-sort select {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  outline: none;
}

/* ===== Server Table ===== */
.server-table-container { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 5px rgba(0,0,0,.04); }
.server-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.server-table thead { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.server-table thead th { color: #fff; padding: 12px 10px; text-align: left; font-weight: 600; font-size: 13px; }
.server-table tbody tr { border-bottom: 1px solid #f0f0f0; transition: background .15s; }
.server-table tbody tr:hover { background: #fdf2f0; }
.server-table tbody td { padding: 12px 10px; }
.sv-name { font-weight: 700; color: #1a1a2e; }
.sv-type { display: inline-block; padding: 2px 8px; background: #e8f4fd; color: #2980b9; border-radius: 4px; font-size: 12px; }
.sv-status-open { color: #27ae60; font-weight: 600; }
.sv-status-soon { color: #f39c12; font-weight: 600; }
.sv-status-full { color: #e74c3c; font-weight: 600; }
.sv-btn {
  display: inline-block; padding: 5px 14px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff; border-radius: 5px; font-size: 12px; font-weight: 500;
  transition: opacity .2s;
}
.sv-btn:hover { opacity: .85; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 25px; }
.page-num, .page-prev, .page-next {
  display: inline-block; padding: 8px 14px;
  background: #fff; border: 1px solid #ddd; border-radius: 6px;
  font-size: 13px; color: #555; transition: all .2s;
}
.page-num:hover, .page-prev:hover, .page-next:hover { border-color: #c0392b; color: #c0392b; }
.page-num.active { background: #c0392b; color: #fff; border-color: #c0392b; }
.page-ellipsis { color: #999; }

/* Calendar */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.calendar-day {
  background: #f8f9fa; border-radius: 10px; padding: 15px 10px;
  text-align: center; transition: all .2s;
}
.calendar-day:hover { background: #fff; box-shadow: 0 3px 10px rgba(0,0,0,.06); }
.calendar-day.today { background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; }
.cal-date { font-weight: 700; font-size: 14px; }
.cal-week { font-size: 11px; font-weight: 400; color: #888; }
.today .cal-week { color: rgba(255,255,255,.8); }
.cal-count { font-size: 20px; font-weight: 800; color: #c0392b; margin: 6px 0 2px; }
.today .cal-count { color: #fff; }
.cal-note { font-size: 11px; color: #27ae60; }
.today .cal-note { color: #ffd700; }

/* Guide */
.guide-section { margin-bottom: 28px; }
.guide-section h3 { font-size: 17px; color: #1a1a2e; margin-bottom: 12px; }
.guide-section p { font-size: 14px; color: #555; margin-bottom: 10px; }
.guide-list { padding-left: 0; }
.guide-list li { font-size: 14px; color: #555; margin-bottom: 8px; padding-left: 20px; position: relative; line-height: 1.7; }
.guide-list li::before { content: '▸'; position: absolute; left: 0; color: #c0392b; }

.version-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 12px; }
.version-detail-card { background: #f8f9fa; border-radius: 10px; padding: 16px; }
.version-detail-card h4 { font-size: 15px; color: #1a1a2e; margin-bottom: 10px; }
.version-detail-card p { font-size: 13px; margin-bottom: 5px; color: #555; }

/* Hot List */
.hot-list { }
.hot-item { display: block; padding: 9px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; color: #555; transition: color .2s; }
.hot-item:last-child { border-bottom: none; }
.hot-item:hover { color: #c0392b; }
.hot-rank { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; border-radius: 4px; font-size: 11px; font-weight: 700; background: #f0f0f0; color: #666; margin-right: 8px; }
.hot-item:first-child .hot-rank { background: #f39c12; color: #fff; }
.hot-item:nth-child(2) .hot-rank { background: #e74c3c; color: #fff; }
.hot-item:nth-child(3) .hot-rank { background: #3498db; color: #fff; }

/* Upcoming */
.upcoming-list { }
.upcoming-item { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 12px; }
.upcoming-item:last-child { border-bottom: none; }
.up-time { color: #c0392b; font-weight: 700; white-space: nowrap; }
.up-name { flex: 1; color: #333; }
.up-tag { font-size: 10px; padding: 1px 6px; background: #fff3cd; color: #856404; border-radius: 3px; }

/* Stat Box */
.stat-box { }
.stat-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; }
.stat-row:last-child { border-bottom: none; }
.stat-row span { color: #888; }
.stat-row strong { color: #1a1a2e; font-size: 15px; }

.quick-links { display: flex; flex-direction: column; gap: 8px; }
.quick-link-btn { display: block; text-align: center; padding: 10px; background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 500; transition: opacity .2s; }
.quick-link-btn:hover { opacity: .85; }

/* ===== Download Page ===== */
.download-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dl-method {
  background: #fff; border-radius: 12px; padding: 24px; text-align: center;
  cursor: pointer; border: 2px solid transparent; transition: all .3s;
  box-shadow: 0 1px 5px rgba(0,0,0,.04);
}
.dl-method:hover, .dl-method.active { border-color: #c0392b; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(192,57,43,.12); }
.dl-method-icon { font-size: 42px; margin-bottom: 10px; }
.dl-method h3 { font-size: 16px; color: #1a1a2e; margin-bottom: 6px; }
.dl-method p { font-size: 13px; color: #888; }
.dl-method-tag { display: inline-block; margin-top: 8px; font-size: 11px; padding: 2px 10px; border-radius: 10px; background: #c0392b; color: #fff; }

.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.download-card {
  background: #fff; border-radius: 12px; padding: 20px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 1px 5px rgba(0,0,0,.04); transition: transform .2s;
}
.download-card:hover { transform: translateY(-2px); }
.dl-card-icon { font-size: 36px; width: 50px; text-align: center; }
.dl-card-info { flex: 1; }
.dl-card-info h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.dl-card-info p { font-size: 12px; color: #888; }
.dl-card-info .dl-size { color: #c0392b; font-weight: 600; }
.dl-card-btn {
  display: inline-block; padding: 8px 18px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff; border-radius: 6px; font-size: 13px; font-weight: 600;
  white-space: nowrap; transition: opacity .2s;
}
.dl-card-btn:hover { opacity: .85; }

/* Tutorial */
.tutorial-steps { margin-bottom: 30px; }
.tutorial-step { display: flex; gap: 16px; margin-bottom: 20px; }
.step-num {
  width: 36px; height: 36px; line-height: 36px; flex-shrink: 0;
  text-align: center; border-radius: 50%;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff; font-size: 16px; font-weight: 800;
}
.step-content h3 { font-size: 15px; color: #1a1a2e; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: #555; }
.code-block { margin-top: 8px; padding: 8px 14px; background: #f4f4f4; border-radius: 6px; font-family: 'Courier New', monospace; font-size: 13px; color: #333; }

/* FAQ */
.faq-section { }
.faq-title { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
.faq-item { background: #f8f9fa; border-radius: 8px; padding: 14px 16px; margin-bottom: 10px; }
.faq-q { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: #666; line-height: 1.7; }

/* DL Rank */
.dl-rank-list { }
.dl-rank-item { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; }
.dl-rank-item:last-child { border-bottom: none; }
.dl-rank-no { width: 26px; height: 26px; line-height: 26px; text-align: center; border-radius: 6px; font-weight: 700; font-size: 12px; background: #f0f0f0; color: #666; margin-right: 10px; }
.dl-rank-no.rank-1 { background: #f39c12; color: #fff; }
.dl-rank-no.rank-2 { background: #e74c3c; color: #fff; }
.dl-rank-no.rank-3 { background: #3498db; color: #fff; }
.dl-name { flex: 1; }
.dl-count { font-size: 12px; color: #c0392b; }

/* System Req */
.sys-req { }
.sys-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; }
.sys-row:last-child { border-bottom: none; }
.sys-row span { color: #888; }
.sys-row strong { font-size: 12px; color: #333; }

/* Security */
.security-info { }
.sec-item { font-size: 13px; padding: 5px 0; color: #555; }
.sec-icon { margin-right: 6px; }
.sec-note { font-size: 12px; color: #888; margin-top: 10px; line-height: 1.6; }

/* Service */
.service-info p { font-size: 13px; color: #666; margin-bottom: 6px; }
.service-btn { display: block; text-align: center; margin-top: 10px; padding: 8px; background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; border-radius: 6px; font-size: 13px; font-weight: 500; }
.service-btn:hover { opacity: .85; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero .container { flex-direction: column; }
  .hero-stats { gap: 15px; }
  .stat-num { font-size: 22px; }
  .version-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .server-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .download-methods { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .version-detail-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .nav { font-size: 12px; }
  .nav a { padding: 6px 10px; }
  .server-table { font-size: 12px; }
  .server-table thead th { padding: 8px 5px; font-size: 12px; }
  .server-table tbody td { padding: 8px 5px; }
  .top-bar { font-size: 11px; }
  .top-bar-links { display: none; }
}
