/* ===== CSS Variables ===== */
:root {
  --green: #00ff41;
  --green-dim: #00cc33;
  --green-dark: #003300;
  --green-glow: rgba(0, 255, 65, 0.3);
  --cyan: #00e5ff;
  --red: #ff0040;
  --yellow: #ffd600;
  --bg: #0a0a0a;
  --bg-card: #0d1117;
  --bg-card-hover: #111820;
  --border: #1a2a1a;
  --text: #b0b0b0;
  --text-dim: #666;
  --font-mono: 'Courier New', 'Source Code Pro', monospace;
  --font-main: -apple-system, 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.hidden { display: none !important; }

/* ===== Matrix Background ===== */
#matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.08;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--green);
  text-shadow: 0 0 10px var(--green-glow);
}

.logo-bracket { color: var(--cyan); }
.nav-cursor { animation: blink 1s step-end infinite; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.phone-icon { font-size: 1rem; }

.phone-number {
  color: var(--green) !important;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 10px var(--green-glow);
  text-decoration: none;
  animation: pulse-phone 2s ease-in-out infinite;
}
.phone-number:hover {
  text-decoration: none;
  text-shadow: 0 0 20px var(--green-glow), 0 0 40px var(--green-glow);
}

@keyframes pulse-phone {
  0%, 100% { text-shadow: 0 0 10px var(--green-glow); }
  50% { text-shadow: 0 0 20px var(--green-glow), 0 0 40px var(--green-glow); }
}

.nav-links { display: flex; gap: 0.5rem; }

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  border-color: var(--green);
  text-shadow: 0 0 8px var(--green-glow);
  text-decoration: none;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green-dim);
}

.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(13, 17, 23, 0.85);
  box-shadow: 0 0 40px rgba(0, 255, 65, 0.05);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1rem;
  background: #161b22;
  border-bottom: 1px solid var(--border);
}

.terminal-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  flex: 1;
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
}

.terminal-line {
  color: var(--green);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.prompt { color: var(--cyan); margin-right: 0.5rem; }

.terminal-output { margin-bottom: 1rem; }

/* Glitch Effect */
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
  margin-bottom: 0.5rem;
}

.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.glitch::before {
  animation: glitch-1 2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  color: var(--cyan);
}
.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  color: var(--red);
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-dim);
}

/* Hero Phone */
.hero-phone {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 255, 65, 0.08);
  border: 1px solid var(--green-dim);
  border-radius: 4px;
  margin-top: 0.25rem;
  transition: all 0.3s;
}
.hero-phone:hover {
  background: rgba(0, 255, 65, 0.15);
  box-shadow: 0 0 30px var(--green-glow);
  text-decoration: none;
}

.hero-phone-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-phone-number {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green);
  text-shadow: 0 0 15px var(--green-glow);
  animation: pulse-phone 2s ease-in-out infinite;
}

.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--green-dark);
  color: var(--green);
  border: 1px solid var(--green-dim);
  border-radius: 2px;
}

.typing { color: var(--green); }

.cursor-blink { animation: blink 1s step-end infinite; color: var(--green); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  z-index: 1;
}

.stat {
  text-align: center;
  color: var(--green);
  font-family: var(--font-mono);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 0 15px var(--green-glow);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: rgba(13, 17, 23, 0.3);
  border-radius: 16px;
  margin: 2rem auto;
}

.section-header { text-align: center; margin-bottom: 3rem; }

.section-icon { font-size: 2rem; }

.section-title {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--green);
  text-shadow: 0 0 15px var(--green-glow);
  margin: 0.5rem 0;
}

.title-accent { color: var(--cyan); }

.section-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  margin: 1rem auto;
}

.section-desc {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== News ===== */
.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--green);
}

.news-card:hover {
  border-color: var(--green-dim);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
  transform: translateY(-2px);
}

.news-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--green-dark);
  color: var(--green);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.news-title {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.news-summary {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.news-updated, .prices-updated {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.updated-icon { color: var(--green); animation: spin 2s linear infinite; display: inline-block; }

/* ===== Prices ===== */
.price-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--green);
  border-color: var(--green);
  background: var(--green-dark);
}

.price-table {
  display: grid;
  gap: 0.75rem;
}

.price-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 80px 100px;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.price-row:hover {
  border-color: var(--green-dim);
  background: var(--bg-card-hover);
}

.price-row.header {
  color: var(--cyan);
  font-weight: bold;
  background: #161b22;
  border-color: var(--border);
}

.price-category {
  color: var(--cyan);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.price-name { color: #e0e0e0; }
.price-value { color: var(--green); font-weight: bold; font-size: 1rem; }
.price-change { font-size: 0.8rem; }
.price-change.down { color: var(--green); }
.price-change.up { color: var(--red); }
.price-shop { color: var(--text-dim); font-size: 0.75rem; }
.price-date { color: var(--text-dim); font-size: 0.7rem; }

/* ===== Repair ===== */
.repair-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.repair-form-wrapper {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}

.repair-form, .repair-success { padding: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.7rem 1rem;
  background: #0a0e12;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: #e0e0e0;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}
.form-input::placeholder { color: var(--text-dim); }

.form-textarea { resize: vertical; min-height: 100px; }

select.form-input { cursor: pointer; }
select.form-input option { background: #0a0e12; color: #e0e0e0; }

.radio-group { display: flex; gap: 1.5rem; margin-top: 0.4rem; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}
.radio-label input { display: none; }
.radio-custom {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.radio-label input:checked + .radio-custom {
  border-color: var(--green);
}
.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--green-dark);
  color: var(--green);
  border: 1px solid var(--green-dim);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  background: rgba(0, 255, 65, 0.15);
  box-shadow: 0 0 20px var(--green-glow);
}

.btn-glitch { display: none; }
.btn-submit:hover .btn-glitch { display: inline; }
.btn-submit:hover .btn-text { display: none; }

/* Repair Success */
.repair-success { text-align: center; padding: 3rem 2rem; }
.success-icon {
  width: 60px; height: 60px;
  background: var(--green-dark);
  color: var(--green);
  font-size: 2rem;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--green);
}
.repair-success h3 { color: var(--green); font-size: 1.5rem; margin-bottom: 0.5rem; }
.repair-success p { color: var(--text); margin-bottom: 0.5rem; }
.ticket-id {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
}

/* Repair Info */
.repair-info { display: flex; flex-direction: column; gap: 1.5rem; }

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.info-card h3 {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.info-card p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-steps { display: flex; flex-direction: column; gap: 0.25rem; }
.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.step-num {
  color: var(--cyan);
  font-weight: bold;
  font-size: 0.75rem;
  min-width: 24px;
}
.step-arrow { text-align: center; color: var(--green-dim); font-size: 0.7rem; }

/* ===== Shop ===== */
.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--green-dim);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
  transform: translateY(-3px);
}

.product-image {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px var(--green-glow));
}

.product-name {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 1.2rem;
  font-weight: bold;
}
.product-original-price {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product-stock {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.btn-add-cart {
  padding: 0.5rem 1rem;
  background: var(--green-dark);
  color: var(--green);
  border: 1px solid var(--green-dim);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-add-cart:hover {
  background: rgba(0, 255, 65, 0.2);
  box-shadow: 0 0 10px var(--green-glow);
}

/* ===== Cart Modal ===== */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
}
.modal-close:hover { color: var(--red); }

.cart-items {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.cart-item-name { color: #e0e0e0; flex: 1; }
.cart-item-qty { color: var(--cyan); margin: 0 1rem; }
.cart-item-price { color: var(--green); font-weight: bold; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  margin-left: 1rem;
  font-size: 1rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 1.3rem;
  font-weight: bold;
}

.cart-empty {
  text-align: center;
  padding: 3rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.cart-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: var(--green-dark);
  border: 1px solid var(--green-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--green-glow);
}
.cart-float:hover { transform: scale(1.1); }

.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  min-width: 18px;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--green); text-decoration: none; }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.footer-hex {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #333;
}

.footer-friends {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 1rem 0 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-friends .friends-label {
  color: var(--cyan);
  font-weight: 500;
}
.footer-friends a {
  color: var(--green);
  transition: color 0.3s;
}
.footer-friends a:hover {
  color: var(--cyan);
  text-decoration: none;
}
.footer-friends .friends-sep {
  color: #444;
}
.footer-friends .friends-exchange {
  color: var(--yellow);
  font-size: 0.8rem;
  margin-left: 1rem;
  font-style: italic;
}

/* ===== Animations ===== */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glitch-1 {
  0% { transform: none; }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: none; }
}

@keyframes glitch-2 {
  0% { transform: none; }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(-2px, 2px); }
  100% { transform: none; }
}

/* ===== Scan Line Effect ===== */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.03) 0px,
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 999;
}

/* ===== Shop Enhanced ===== */
.shop-cod-banner {
  background: linear-gradient(90deg, #ff0040, #ff4060, #ff0040);
  background-size: 200% auto;
  animation: codShine 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 0.8rem 2rem;
  margin: 0 2rem 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
}

@keyframes codShine {
  to { background-position: 200% center; }
}

.cod-icon {
  font-size: 1.4rem;
}

.cod-text {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.cod-sub {
  font-size: 0.8rem;
  opacity: 0.9;
}

.shop-updated {
  text-align: center;
  color: #555;
  font-size: 0.8rem;
  padding-top: 1rem;
}

.shop-updated .updated-icon {
  color: #00e5ff;
  display: inline-block;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.product-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.product-tags {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.prod-tag {
  background: #00e5ff15;
  color: #00e5ff;
  border: 1px solid #00e5ff33;
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.product-brand {
  color: #888;
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
}

.product-mid {
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 0.7rem;
  margin: 0.3rem 0;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.prod-price-down {
  color: #00ff41;
  font-size: 0.7rem;
  font-weight: bold;
}

.prod-price-up {
  color: #ff0040;
  font-size: 0.7rem;
  font-weight: bold;
}

.prod-price-same {
  color: #555;
  font-size: 0.7rem;
}

.prod-discount {
  background: #ff0040;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-weight: bold;
}

.product-cod-label {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #1a2a1a;
  text-align: center;
  color: #ff0040;
  font-size: 0.75rem;
  font-weight: bold;
  background: #ff004008;
  border-radius: 0 0 6px 6px;
  margin: 0.5rem -0.8rem -0.8rem;
  padding: 0.4rem;
}

/* ===== Checkout Form ===== */
.checkout-form {
  padding: 1rem;
}

.checkout-title {
  color: #00ff41;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.checkout-cod-notice {
  background: #ff004011;
  border: 1px solid #ff004044;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
  font-size: 0.85rem;
  text-align: center;
}

.checkout-cod-notice span {
  color: #ff0040;
  font-weight: bold;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-label {
  display: block;
  color: #00e5ff;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.form-label .prompt {
  color: #00ff41;
}

.form-input {
  width: 100%;
  background: #080b0e;
  border: 1px solid #1a2a1a;
  color: #e0e0e0;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #00e5ff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.15);
}

.form-input::placeholder {
  color: #444;
}

.checkout-summary {
  background: #080b0e;
  border: 1px solid #151515;
  border-radius: 6px;
  padding: 0.8rem;
  margin: 1rem 0;
}

.summary-title {
  color: #00e5ff;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #1a2a1a;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  color: #b0b0b0;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #0d1117;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  color: #00e5ff;
  font-weight: bold;
}

.summary-total-price {
  color: #00ff41;
  font-size: 1.1rem;
}

.checkout-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.btn-secondary {
  background: #1a2a1a;
  border-color: #333;
  color: #888;
}

.btn-primary {
  flex: 1;
}

/* ===== Order Success ===== */
.order-success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #00ff41;
  color: #0a0a0a;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.order-success h3 {
  color: #00ff41;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.order-success p {
  color: #b0b0b0;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.cod-confirm {
  background: #ff004011;
  border: 1px solid #ff004033;
  border-radius: 6px;
  padding: 0.6rem;
  margin: 0.8rem 0 !important;
}

.order-notice {
  color: #888 !important;
  font-size: 0.8rem !important;
}

.hidden {
  display: none !important;
}

/* ===== Build Advisor ===== */
.builds-scenario {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.scenario-card {
  background: linear-gradient(135deg, #0a1a1a, #0d1117);
  border: 1px solid #00e5ff;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.scenario-title {
  color: #00e5ff;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.scenario-desc {
  color: #e0e0e0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.scenario-link {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #1a2a2a;
  color: #00ff41;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s;
}

.scenario-link:hover {
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.builds-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.build-tab {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  color: #888;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.build-tab:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}

.build-tab.active {
  background: #00e5ff11;
  border-color: #00e5ff;
  color: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.builds-container {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.build-card {
  background: #0a0e12;
  border: 1px solid var(--build-color, #00ff41);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.build-card-header {
  background: linear-gradient(90deg, color-mix(in srgb, var(--build-color) 8%, transparent), transparent);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--build-color) 20%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.build-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.build-icon {
  font-size: 1.2rem;
}

.build-name {
  color: var(--build-color);
  font-size: 1rem;
  font-weight: bold;
}

.build-budget {
  text-align: right;
}

.build-budget-label {
  display: block;
  color: #555;
  font-size: 0.7rem;
}

.build-budget-value {
  color: var(--build-color);
  font-size: 0.95rem;
  font-weight: bold;
}

.build-target {
  padding: 0.5rem 1rem;
  color: #888;
  font-size: 0.8rem;
  border-bottom: 1px solid #151515;
}

.build-parts {
  padding: 0.5rem 0;
}

.build-part {
  display: flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid #0d1117;
  gap: 0.8rem;
}

.build-part:last-child {
  border-bottom: none;
}

.build-part-cat {
  color: #666;
  font-size: 0.75rem;
  white-space: nowrap;
  min-width: 70px;
}

.build-part-name {
  color: #e0e0e0;
  font-size: 0.85rem;
  flex: 1;
}

.build-part-price {
  font-size: 0.85rem;
  font-weight: bold;
  white-space: nowrap;
  text-align: right;
}

.build-part-price.high { color: #ff0040; }
.build-part-price.mid { color: #ffd600; }
.build-part-price.low { color: #00e5ff; }
.build-part-price.budget { color: #00ff41; }
.build-part-price.included { color: #555; }

.build-total {
  padding: 0.7rem 1rem;
  border-top: 1px solid #151515;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 0.85rem;
}

.build-total-value {
  color: var(--build-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.build-tips {
  padding: 0.5rem 1rem 0.8rem;
  background: #080b0e;
  border-top: 1px solid #111;
  font-size: 0.8rem;
  color: #888;
}

.builds-tip {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.tip-card {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tip-label {
  color: #00e5ff;
  font-size: 0.75rem;
  font-family: 'Courier New', monospace;
}

.tip-text {
  color: #e0e0e0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.builds-contact {
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.builds-contact-inner {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.builds-contact-title {
  color: #00ff41;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.6rem;
}

.builds-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #e0e0e0;
  font-size: 0.85rem;
}

.builds-contact-info a {
  color: #00ff41;
  text-decoration: none;
}

.builds-contact-info a:hover {
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

/* ===== Builds Subscribe ===== */
.builds-subscribe {
  padding: 0 2rem;
}

.subscribe-card {
  background: linear-gradient(135deg, #0d1117, #0a0e12);
  border: 1px solid #1a2a1a;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subscribe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff41, #00e5ff, #00ff41);
  background-size: 200% 100%;
  animation: subscribe-shine 3s ease-in-out infinite;
}

@keyframes subscribe-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subscribe-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.subscribe-icon {
  font-size: 2rem;
}

.subscribe-title {
  color: #00ff41;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: var(--font-mono);
}

.subscribe-desc {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.subscribe-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.subscribe-form .form-row:last-child {
  grid-template-columns: 1fr 1fr auto;
}

.subscribe-form .form-input,
.subscribe-form select {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-family: var(--font-main);
}

.subscribe-form .form-input:focus,
.subscribe-form select:focus {
  outline: none;
  border-color: #00ff41;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.btn-subscribe {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #00ff41, #00cc33);
  color: #0a0e12;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-mono);
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.4);
}

.btn-subscribe:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.subscribe-success {
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid #00ff41;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.subscribe-success .success-icon {
  font-size: 2.5rem;
  color: #00ff41;
  display: block;
  margin-bottom: 0.5rem;
}

.subscribe-success p {
  color: #00ff41;
  font-size: 1rem;
}

.subscribe-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1a2a1a;
}

.feature-tag {
  background: #0a0e12;
  color: #888;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid #1a2a1a;
}

/* ===== Forum ===== */
.forum-new-post {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 10px;
  margin: 0 2rem 1.5rem;
  overflow: hidden;
}

.forum-new-header {
  background: #0d1117;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #151515;
  color: #00e5ff;
  font-size: 0.85rem;
  font-weight: bold;
}

.forum-prompt {
  color: #00ff41;
  margin-right: 0.3rem;
}

.forum-new-body {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.forum-input {
  background: #080b0e;
  border: 1px solid #1a2a1a;
  color: #e0e0e0;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  transition: border-color 0.3s;
}

.forum-input:focus {
  border-color: #00e5ff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.1);
}

.forum-input::placeholder {
  color: #444;
}

#forum-author {
  width: 140px;
}

.forum-select {
  background: #080b0e;
  border: 1px solid #1a2a1a;
  color: #00e5ff;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  cursor: pointer;
}

.forum-select:focus {
  border-color: #00e5ff;
  outline: none;
}

.forum-title-input {
  width: 100%;
  flex-basis: 100%;
}

.forum-textarea {
  width: 100%;
  flex-basis: 100%;
  background: #080b0e;
  border: 1px solid #1a2a1a;
  color: #e0e0e0;
  padding: 0.6rem 0.7rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  resize: vertical;
  min-height: 60px;
  transition: border-color 0.3s;
}

.forum-textarea:focus {
  border-color: #00e5ff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.1);
}

.forum-textarea::placeholder {
  color: #444;
}

.forum-new-actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forum-char-count {
  color: #555;
  font-size: 0.75rem;
}

.btn-forum-submit {
  background: #00e5ff11;
  border: 1px solid #00e5ff44;
  color: #00e5ff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn-forum-submit:hover {
  background: #00e5ff22;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.forum-filters {
  display: flex;
  gap: 0.4rem;
  padding: 0 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.forum-filter {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  color: #666;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.forum-filter:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}

.forum-filter.active {
  background: #00e5ff11;
  border-color: #00e5ff;
  color: #00e5ff;
}

.forum-list {
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.forum-post-card {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.forum-post-card:hover {
  border-color: #00e5ff44;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.08);
}

.forum-post-left {
  min-width: 60px;
  text-align: center;
}

.forum-post-cat {
  background: #00e5ff11;
  color: #00e5ff;
  border: 1px solid #00e5ff33;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
}

.forum-post-main {
  flex: 1;
  min-width: 0;
}

.forum-post-title {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forum-post-preview {
  color: #666;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forum-post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: #555;
}

.forum-post-right {
  text-align: center;
  min-width: 40px;
}

.forum-reply-count {
  display: block;
  color: #00e5ff;
  font-size: 1.1rem;
  font-weight: bold;
}

.forum-reply-label {
  color: #555;
  font-size: 0.65rem;
}

.forum-empty {
  text-align: center;
  color: #555;
  padding: 2rem;
  font-size: 0.85rem;
}

/* Forum Modal */
.forum-modal-content {
  max-width: 700px;
}

.forum-detail-header {
  padding: 1rem;
  border-bottom: 1px solid #151515;
}

.forum-detail-cat {
  display: inline-block;
  background: #00e5ff11;
  color: #00e5ff;
  border: 1px solid #00e5ff33;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.forum-detail-title {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin: 0.4rem 0;
}

.forum-detail-meta {
  display: flex;
  gap: 1rem;
  color: #555;
  font-size: 0.75rem;
}

.forum-detail-content {
  padding: 1rem;
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.7;
  border-bottom: 1px solid #151515;
}

.forum-replies-section {
  padding: 0.8rem 1rem;
}

.forum-replies-title {
  color: #00e5ff;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #1a2a1a;
}

.forum-reply-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid #0d1117;
}

.forum-reply-item:last-child {
  border-bottom: none;
}

.forum-reply-meta {
  display: flex;
  gap: 0.8rem;
  font-size: 0.7rem;
  color: #555;
  margin-bottom: 0.3rem;
}

.forum-reply-author {
  color: #00e5ff;
}

.forum-reply-content {
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.forum-reply-area {
  padding: 0.8rem 1rem;
  border-top: 1px solid #1a2a1a;
  background: #080b0e;
}

.forum-reply-header {
  color: #00e5ff;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  font-weight: bold;
}

#reply-author {
  width: 140px;
  margin-bottom: 0.5rem;
}

#reply-content {
  margin-bottom: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav { padding: 0 1rem; }
  .nav-links { gap: 0.25rem; }
  .nav-link { padding: 0.3rem 0.5rem; font-size: 0.7rem; }
  .nav-status { display: none; }
  .nav-phone { display: none; }

  .hero-title { font-size: 1.8rem; }
  .hero-phone-number { font-size: 1.4rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.8rem; }

  .section { padding: 3rem 1rem; }

  .news-container { grid-template-columns: 1fr; }

  .price-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .price-row.header { display: none; }
  .price-category::after { content: ': '; }
  .price-name { grid-column: 1 / -1; }

  .repair-container { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; gap: 0.5rem; }

  .shop-container { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  .builds-scenario,
  .builds-tabs,
  .builds-container,
  .builds-tip,
  .builds-contact {
    padding: 0 1rem;
  }

  .build-tab {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .build-part {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .build-part-cat {
    min-width: auto;
  }

  .build-part-name {
    width: 100%;
    order: 3;
    font-size: 0.8rem;
  }

  .build-part-price {
    font-size: 0.8rem;
  }

  .forum-new-post,
  .forum-filters,
  .forum-list {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .forum-post-card {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .forum-post-left {
    min-width: auto;
  }

  .forum-post-right {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .forum-reply-count {
    font-size: 0.85rem;
  }

  .forum-reply-label {
    font-size: 0.6rem;
  }

  .forum-detail-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* ===== News Detail Modal ===== */
.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

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

.news-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.news-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.news-modal-tag {
  background: var(--green-dark);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.news-modal-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.news-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.news-modal-title {
  color: var(--green);
  padding: 20px;
  font-size: 1.4em;
  line-height: 1.4;
  text-shadow: 0 0 10px var(--green-glow);
}

.news-modal-meta {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  color: var(--text-dim);
  font-size: 14px;
}

.news-modal-body {
  padding: 20px;
  color: var(--text);
  line-height: 1.8;
}

.news-modal-body p {
  margin-bottom: 16px;
}

.news-modal-body ul, .news-modal-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.news-modal-body li {
  margin-bottom: 8px;
}

.news-modal-body strong {
  color: var(--cyan);
}

.news-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(0, 255, 65, 0.05);
  border-radius: 0 0 12px 12px;
}

/* ===== Weather Subscribe Section ===== */
.weather-subscribe-box {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 20px;
}

.weather-info {
  flex: 1;
  display: flex;
  gap: 20px;
}

.weather-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.weather-text h3 {
  color: var(--green);
  margin-bottom: 12px;
}

.weather-text p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.weather-text ul {
  list-style: none;
  padding: 0;
  color: var(--text);
}

.weather-text li {
  padding: 6px 0;
}

.subscribe-form {
  flex: 1;
  max-width: 350px;
}

.subscribe-form .form-group {
  margin-bottom: 16px;
}

.subscribe-form label {
  display: block;
  color: var(--cyan);
  font-size: 14px;
  margin-bottom: 6px;
}

.subscribe-form input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--green);
}

.subscribe-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  border: none;
  border-radius: 6px;
  color: var(--bg);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--green-glow);
}

.subscribe-result {
  margin-top: 16px;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  display: none;
}

.subscribe-result.success {
  display: block;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid var(--green);
  color: var(--green);
}

.subscribe-result.error {
  display: block;
  background: rgba(255, 0, 64, 0.1);
  border: 1px solid var(--red);
  color: var(--red);
}

@media (max-width: 768px) {
  .weather-subscribe-box {
    flex-direction: column;
  }
  
  .weather-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== VIP会员板块 ===== */
.vip-section {
  background: linear-gradient(135deg, rgba(0,255,65,0.05), rgba(0,229,255,0.05));
  padding: 60px 20px;
}

.vip-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #1a2a1a, #0d1117);
  border: 2px solid var(--green);
  border-radius: 15px;
  margin-bottom: 40px;
  position: relative;
}

.vip-banner-icon {
  font-size: 3em;
  animation: pulse 2s ease-in-out infinite;
}

.vip-banner-title {
  color: var(--green);
  font-size: 2em;
  text-shadow: 0 0 20px var(--green-glow);
}

.vip-banner-desc {
  color: var(--cyan);
  font-size: 1em;
  opacity: 0.9;
}

.vip-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--yellow);
  color: var(--bg);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85em;
}

.vip-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s;
  position: relative;
}

.vip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,255,65,0.2);
  border-color: var(--green);
}

.vip-card-popular {
  border: 2px solid var(--yellow);
  background: linear-gradient(135deg, rgba(255,214,0,0.1), var(--bg-card));
}

.vip-popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--bg);
  padding: 5px 20px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.85em;
}

.vip-card-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.vip-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 10px;
}

.vip-title {
  color: var(--text);
  font-size: 1.3em;
  margin-bottom: 15px;
}

.vip-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.vip-price-value {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--green);
  text-shadow: 0 0 10px var(--green-glow);
}

.vip-price-unit {
  color: var(--text-dim);
  font-size: 0.9em;
}

.vip-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.vip-features li {
  padding: 10px 0;
  color: var(--text);
  font-size: 0.95em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vip-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: bold;
}

.vip-card-footer {
  text-align: center;
}

.vip-best {
  display: block;
  color: var(--cyan);
  font-size: 0.85em;
  margin-bottom: 15px;
}

.vip-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s;
}

.vip-btn-basic {
  background: var(--cyan);
  color: var(--bg);
}

.vip-btn-basic:hover {
  background: #00b8d4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,229,255,0.4);
  text-decoration: none;
}

.vip-btn-pro {
  background: var(--yellow);
  color: var(--bg);
}

.vip-btn-pro:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,214,0,0.4);
  text-decoration: none;
}

.vip-btn-enterprise {
  background: var(--green);
  color: var(--bg);
}

.vip-btn-enterprise:hover {
  background: var(--green-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--green-glow);
  text-decoration: none;
}

.vip-features-extra {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.vip-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.vip-extra-icon {
  font-size: 1.2em;
}

.vip-donate {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,0,64,0.1), rgba(255,107,53,0.1));
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 15px;
}

.vip-donate-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.vip-donate-icon {
  font-size: 2em;
}

.vip-donate-title {
  color: #ff6b35;
  font-size: 1.3em;
}

.vip-donate-desc {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.vip-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s;
}

.vip-donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  text-decoration: none;
}

@media (max-width: 768px) {
  .vip-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .vip-plans {
    grid-template-columns: 1fr;
  }
  
  .vip-features-extra {
    flex-direction: column;
    text-align: center;
  }
}

.vip-notice {
  margin-top: 30px;
}

.vip-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(0,255,65,0.1);
  border: 1px solid var(--green);
  border-radius: 10px;
}

.vip-notice-icon {
  font-size: 1.5em;
}

.vip-notice-content strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}

.vip-notice-content p {
  color: var(--text);
  font-size: 0.95em;
  line-height: 1.6;
}

.vip-disclaimer {
  margin-top: 20px;
  padding: 15px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.vip-disclaimer p {
  color: var(--text-dim);
  font-size: 0.85em;
}

.vip-disclaimer strong {
  color: var(--green);
}

/* ===== 社交媒体按钮区域 ===== */
.social-media-section {
  background: var(--bg);
  padding: 40px 20px;
  border-bottom: 1px solid var(--border);
}

.social-media-container {
  max-width: 800px;
  margin: 0 auto;
}

.social-media-title {
  text-align: center;
  margin-bottom: 30px;
}

.social-media-title .social-icon {
  font-size: 2em;
  display: block;
  margin-bottom: 10px;
}

.social-media-title h2 {
  color: var(--green);
  font-size: 1.8em;
  text-shadow: 0 0 15px var(--green-glow);
  margin-bottom: 8px;
}

.social-media-title p {
  color: var(--text-dim);
  font-size: 0.9em;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  justify-items: center;
}

.social-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,255,65,0.2);
  border-color: var(--green);
}

.social-btn-icon {
  font-size: 2em;
  margin-bottom: 5px;
}

.social-btn-name {
  color: var(--text);
  font-size: 0.85em;
}

/* 悬浮弹窗 */
.social-btn-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  min-width: 150px;
  text-align: center;
}

.social-btn:hover .social-btn-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.social-btn-popup img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 10px;
  object-fit: cover;
}

.social-btn-popup span {
  display: block;
  color: #333;
  font-size: 0.85em;
  font-weight: 500;
}

/* 不同平台颜色 */
.social-btn[data-platform="wechat"]:hover { border-color: #07C160; }
.social-btn[data-platform="qq"]:hover { border-color: #12B7F5; }
.social-btn[data-platform="douyin"]:hover { border-color: #000; }
.social-btn[data-platform="kuaishou"]:hover { border-color: #FF5000; }
.social-btn[data-platform="bilibili"]:hover { border-color: #00A1D6; }
.social-btn[data-platform="xiaohongshu"]:hover { border-color: #FF2442; }
.social-btn[data-platform="taobao"]:hover { border-color: #FF6600; }
.social-btn[data-platform="weishop"]:hover { border-color: #07C160; }
.social-btn[data-platform="wechat_public"]:hover { border-color: #07C160; }
.social-btn[data-platform="alipay_mini"]:hover { border-color: #1677FF; }
.social-btn[data-platform="wechat_mini"]:hover { border-color: #07C160; }
.social-btn[data-platform="pinduoduo"]:hover { border-color: #E02E24; }

@media (max-width: 600px) {
  .social-media-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .social-btn {
    width: 70px;
    height: 70px;
  }
  
  .social-btn-icon {
    font-size: 1.5em;
  }
  
  .social-btn-name {
    font-size: 0.75em;
  }
  
  .social-btn-popup img {
    width: 100px;
    height: 100px;
  }
}

/* ===== 打赏等级样式 ===== */
.donate-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.donate-level-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.donate-level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,107,53,0.2);
  border-color: #ff6b35;
}

.donate-level-card .donate-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.donate-level-card .donate-name {
  color: var(--text);
  font-size: 0.9em;
  margin-bottom: 8px;
}

.donate-level-card .donate-price {
  color: #ff6b35;
  font-size: 1.2em;
  font-weight: bold;
}

.donate-level-card.donate-custom {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,214,0,0.1));
  border-color: rgba(255,107,53,0.3);
}

.donate-level-card.donate-custom:hover {
  border-color: var(--yellow);
  box-shadow: 0 10px 30px rgba(255,214,0,0.3);
}

.donate-level-card.donate-custom .donate-price {
  color: var(--yellow);
}

/* 自定义金额弹窗 */
.custom-donate-content {
  max-width: 400px;
}

.custom-donate-body {
  padding: 25px;
  text-align: center;
}

.custom-donate-body .form-group {
  margin-bottom: 15px;
}

.custom-donate-body label {
  color: var(--cyan);
  font-size: 0.9em;
  display: block;
  margin-bottom: 10px;
}

.custom-donate-body input {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.2em;
  text-align: center;
}

.custom-donate-body input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 10px rgba(255,107,53,0.3);
}

@media (max-width: 768px) {
  .donate-levels {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .donate-level-card {
    padding: 15px 10px;
  }
  
  .donate-level-card .donate-icon {
    font-size: 2em;
  }
}

/* ===== Remote Assist ===== */
.nav-link-special {
  color: var(--cyan) !important;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  padding: 0.3rem 0.6rem !important;
  animation: nav-glow 2s ease-in-out infinite;
}
@keyframes nav-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0,229,255,0.3); }
  50% { box-shadow: 0 0 15px rgba(0,229,255,0.6); }
}
.nav-link-special:hover {
  background: rgba(0,229,255,0.15) !important;
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
  color: #fff !important;
}

.hero-remote-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(0,255,65,0.08));
  border: 1px solid var(--cyan);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  margin-top: 0.25rem;
  color: inherit;
  font-family: var(--font-mono);
}
.hero-remote-btn:hover {
  background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(0,255,65,0.15));
  border-color: #fff;
  box-shadow: 0 0 40px rgba(0,229,255,0.3), 0 0 80px rgba(0,255,65,0.15);
  transform: scale(1.02);
}
.hero-remote-icon { font-size: 2rem; flex-shrink: 0; }
.hero-remote-text {
  font-size: 1.2rem; font-weight: bold; color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
}
.hero-remote-sub {
  font-size: 0.7rem; color: var(--text-dim); margin-left: auto;
}
.hero-remote-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,229,255,0.15);
  animation: remote-pulse 2s infinite;
}
@keyframes remote-pulse {
  0% { width: 0; height: 0; opacity: 0.8; }
  100% { width: 600px; height: 600px; opacity: 0; }
}

.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; display: flex; align-items: flex-start; justify-content: center; padding-top: 5vh; }
.modal.hidden { display: none; }
.modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); }
.modal-content { position: relative; z-index: 1; max-width: 700px; width: 90%; }
.modal-close { background: none; border: none; color: var(--text-dim); font-size: 1.2rem; cursor: pointer; padding: 0 0.5rem; }
.modal-close:hover { color: var(--red); }

.remote-modal-content {
  border: 1px solid var(--cyan);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 0 60px rgba(0,229,255,0.15);
}
.remote-modal-body { padding: 1.5rem 2rem 2rem; }

.remote-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.remote-step { display: flex; gap: 1rem; align-items: flex-start; }
.remote-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cyan); color: #000;
  font-family: var(--font-mono); font-size: 1.1rem; font-weight: bold;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 2px;
}
.remote-step-content h4 {
  font-family: var(--font-mono); color: var(--cyan);
  margin-bottom: 0.3rem; font-size: 0.95rem;
}
.remote-step-content p { font-size: 0.85rem; color: var(--text); margin-bottom: 0.5rem; }

.remote-dl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; background: linear-gradient(135deg, var(--cyan), #0088cc);
  color: #fff; border: none; border-radius: 6px;
  font-size: 1.1rem; font-weight: bold; text-decoration: none;
  cursor: pointer; transition: all 0.3s; margin-right: 1rem;
}
.remote-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0,229,255,0.4); color: #fff; }
.remote-note { font-size: 0.75rem; color: var(--text-dim); font-family: var(--font-mono); }

.remote-id-box {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: #0a0e12;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--font-mono);
}
.remote-id-label { color: var(--text-dim); font-size: 0.85rem; }
.remote-id-example { color: var(--green); font-size: 1.2rem; font-weight: bold; text-shadow: 0 0 10px var(--green-glow); }

.remote-contact { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.remote-tel-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; background: var(--green-dark);
  color: var(--green); border: 1px solid var(--green-dim);
  border-radius: 4px; text-decoration: none; font-weight: bold; transition: all 0.3s;
}
.remote-tel-btn:hover { background: rgba(0,255,65,0.2); box-shadow: 0 0 15px var(--green-glow); color: var(--green); }
.remote-or { color: var(--text-dim); font-size: 0.85rem; }
.remote-wechat { color: var(--cyan); font-size: 0.9rem; }

.remote-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.remote-feature {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--text-dim); justify-content: center;
}
.rf-icon { font-size: 1.1rem; }

/* 远程协助内联 section 样式 */
.remote-steps-inline {
  display: flex; flex-direction: column;
  gap: 1.25rem; margin-bottom: 2rem;
}
.remote-step-card {
  display: flex; gap: 1.25rem;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.5rem;
  transition: all 0.3s;
}
.remote-step-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.1);
}
.remote-step-badge {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,229,255,0.1); border: 1px solid var(--cyan);
  border-radius: 10px; color: var(--cyan);
  font-size: 1.1rem; font-weight: bold;
  font-family: var(--font-mono);
}
.remote-step-body { flex: 1; min-width: 0; }
.remote-step-body h3 {
  color: var(--text); font-size: 1.05rem; margin-bottom: 0.3rem;
  font-weight: bold;
}
.remote-step-body p {
  color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .hero-remote-btn { padding: 0.8rem 1rem; gap: 0.5rem; }
  .hero-remote-text { font-size: 1rem; }
  .hero-remote-icon { font-size: 1.5rem; }
  .hero-remote-sub { display: none; }
  .remote-features { grid-template-columns: repeat(2, 1fr); }
  .remote-dl-btn { display: block; width: 100%; justify-content: center; margin-right: 0; margin-bottom: 0.5rem; }
  .remote-note { display: block; text-align: center; }
  .remote-step-card { flex-direction: column; padding: 1rem; }
  .remote-step-badge { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* ===== 自助装机按钮 ===== */
.builds-diy {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.btn-diy-builder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1a0a2e, #0a0e12);
  border: 2px solid #7c3aed;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-diy-builder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #00e5ff, #a78bfa, #7c3aed);
  background-size: 200% 100%;
  animation: diy-shine 3s ease-in-out infinite;
}

@keyframes diy-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-diy-builder:hover {
  border-color: #a78bfa;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3), 0 5px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.diy-icon {
  font-size: 2.5rem;
}

.diy-text {
  font-size: 1.4rem;
  font-weight: bold;
  color: #a78bfa;
  font-family: var(--font-mono, 'Courier New', monospace);
}

.diy-sub {
  font-size: 0.85rem;
  color: #888;
}

/* ===== 电脑租赁 ===== */
.rental-credit-banner {
  margin: 0 2rem 1.5rem;
  background: linear-gradient(135deg, #1a3a1a, #0a0e12);
  border: 1px solid #2d5a2d;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.credit-icon { font-size: 2rem; }
.credit-content { display: flex; flex-direction: column; gap: 0.3rem; }
.credit-content strong { color: #4ade80; font-size: 1.1rem; }
.credit-content span { color: #888; font-size: 0.85rem; }

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.rental-card {
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rental-card:hover {
  border-color: #00ff4144;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
  transform: translateY(-4px);
}
.rental-popular {
  border-color: #f59e0b44;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}
.rental-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0e12;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  white-space: nowrap;
}

.rental-tier {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0 auto;
}
.tier-low { background: #37415122; color: #9ca3af; border: 1px solid #374151; }
.tier-mid { background: #00ff4111; color: #00ff41; border: 1px solid #00ff4144; }
.tier-high { background: #7c3aed11; color: #a78bfa; border: 1px solid #7c3aed44; }

.rental-specs {
  text-align: left;
  font-size: 0.8rem;
  color: #b0b0b0;
  line-height: 2;
  padding: 0 0.5rem;
}
.rental-cpu::before { content: '🧠 '; }
.rental-ram::before { content: '📏 '; }
.rental-storage::before { content: '💾 '; }
.rental-gpu::before { content: '🎮 '; }
.rental-display::before { content: '🖥️ '; }

.rental-price {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #00ff41;
}
.rental-unit { font-size: 1.2rem; }
.rental-period { font-size: 1rem; color: #888; font-weight: 400; }

.rental-deposit {
  font-size: 0.85rem;
  color: #888;
}
.deposit-amount { color: #f59e0b; font-weight: bold; }
.deposit-free { color: #4ade80; font-size: 0.75rem; display: block; margin-top: 2px; }

.rental-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.rental-tags span {
  background: #0d1117;
  border: 1px solid #1a2a1a;
  color: #888;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.rental-notice {
  margin: 0 2rem 1.5rem;
  background: #0a0e12;
  border: 1px solid #1a2a1a;
  border-radius: 10px;
  padding: 1.5rem;
}
.rental-notice-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00e5ff;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #1a2a1a;
}
.notice-icon { font-size: 1.2rem; }
.rental-notice-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.notice-item {
  font-size: 0.8rem;
  color: #b0b0b0;
  line-height: 1.6;
}
.notice-item strong { color: #e0e0e0; }
.notice-item a { color: #00ff41; text-decoration: none; }
.notice-item a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .rental-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  .rental-credit-banner { margin: 0 1rem 1.5rem; flex-direction: column; text-align: center; }
}

/* ========== 维修工单仪表盘 ========== */
.work-dashboard {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
  border: 1px solid #2a3a4a;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 0 auto 2.5rem;
  max-width: 900px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.work-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #00ff41;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.work-dash-date {
  font-size: 0.85rem;
  color: #888;
  font-weight: 400;
}
.work-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.work-stat {
  background: rgba(0,255,65,0.04);
  border: 1px solid rgba(0,255,65,0.12);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-stat:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,255,65,0.1); }
.work-stat-warn { border-color: rgba(255,152,0,0.3); background: rgba(255,152,0,0.05); }
.work-stat-warn .work-stat-num { color: #ff9800; }
.work-stat-ok { border-color: rgba(0,200,83,0.3); background: rgba(0,200,83,0.05); }
.work-stat-ok .work-stat-num { color: #00c853; }
.work-stat-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.work-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff41;
  font-family: 'Courier New', monospace;
}
.work-stat-label { font-size: 0.8rem; color: #666; margin-top: 0.2rem; }
.work-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.6rem;
}
.work-cat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cat-icon { font-size: 1rem; }
.cat-name {
  font-size: 0.8rem;
  color: #aaa;
  flex: 1;
}
.cat-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ff41;
  font-family: 'Courier New', monospace;
  min-width: 2ch;
  text-align: right;
}

/* ========== 维修案例卡片 ========== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
  margin: 0 auto 2rem;
  max-width: 1200px;
}
.case-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid #2a3a4a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,255,65,0.12);
}
.case-card-header {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.case-number {
  background: #00ff41;
  color: #0a0a1a;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}
.case-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255,152,0,0.15);
  color: #ff9800;
  font-weight: 600;
}
.case-badge.badge-fixed { background: rgba(0,200,83,0.15); color: #00c853; }
.case-badge.badge-parts { background: rgba(33,150,243,0.15); color: #2196f3; }
.case-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-left: auto;
  text-align: right;
}
.case-card-body {
  padding: 1.2rem;
}
.case-symptom {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  padding-left: 0.6rem;
  border-left: 2px solid #ff9800;
}
.case-analysis {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  padding: 0.7rem;
  background: rgba(0,255,65,0.03);
  border-radius: 6px;
}
.case-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.case-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  color: #777;
  border: 1px solid rgba(255,255,255,0.08);
}
.case-card-footer {
  padding: 0.7rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #555;
}
.case-cost { color: #00ff41; font-weight: 600; }

.cases-updated {
  text-align: center;
  padding: 1rem;
  color: #555;
  font-size: 0.8rem;
}
.cases-updated .updated-icon { color: #00ff41; }

@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  .work-dashboard { margin: 0 1rem 2rem; padding: 1rem; }
  .work-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .work-stat-num { font-size: 1.4rem; }
  .work-category { grid-template-columns: repeat(3, 1fr); }
}

/* ========== Footer 访客统计 ========== */
.footer-stats {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0,255,65,0.08);
  text-align: center;
  font-size: 0.78rem;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-stats .stat-item { color: #888; letter-spacing: 0.3px; }
.footer-stats .stat-item span {
  color: #00ff41;
  font-family: 'Courier New', monospace;
  font-weight: 600;
}
.footer-stats .stat-sep { color: #333; }

/* ========== 左下角名人名言挂件 ========== */
.quote-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 280px;
  background: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(22,33,62,0.95) 100%);
  border: 1px solid rgba(0,255,65,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  z-index: 998;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 20px rgba(0,255,65,0.05);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
}
.quote-widget:hover {
  border-color: rgba(0,255,65,0.4);
  box-shadow: 0 6px 28px rgba(0,0,0,0.6), 0 0 30px rgba(0,255,65,0.1);
  transform: translateY(-2px);
}
.quote-icon { font-size: 1.2rem; margin-bottom: 6px; text-align: center; }
.quote-text {
  font-size: 0.85rem;
  color: #c0c0c0;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 6px;
  text-align: center;
  transition: color 0.3s;
}
.quote-widget:hover .quote-text { color: #e0e0e0; }
.quote-author {
  font-size: 0.72rem;
  color: #00ff41;
  text-align: right;
  font-weight: 500;
}
.quote-hint {
  font-size: 0.6rem;
  color: #444;
  text-align: center;
  margin-top: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
.quote-widget:hover .quote-hint { opacity: 1; }

/* 隐藏态——收缩为灯泡 */
.quote-hidden {
  max-width: 44px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(13,27,42,0.85);
  border-color: rgba(0,255,65,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transform: none;
  opacity: 0.7;
}
.quote-hidden:hover {
  opacity: 1;
  transform: scale(1.1);
  border-color: rgba(0,255,65,0.4);
  box-shadow: 0 4px 20px rgba(0,255,65,0.15);
}
.quote-hidden .quote-text,
.quote-hidden .quote-author,
.quote-hidden .quote-hint { display: none; }
.quote-hidden .quote-icon { 
  font-size: 1.3rem; 
  margin: 0; 
  animation: bulb-glow 2s ease-in-out infinite;
}
@keyframes bulb-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5) drop-shadow(0 0 6px rgba(255,200,50,0.6)); }
}

@media (max-width: 768px) {
  .quote-widget { max-width: 240px; bottom: 12px; left: 8px; padding: 10px 12px; }
  .quote-text { font-size: 0.78rem; }
}

/* ========== 关于我们 / 团队介绍 ========== */
.team-founded {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0,255,65,0.03);
  border: 1px solid rgba(0,255,65,0.1);
  border-radius: 12px;
}
.founded-badge {
  flex-shrink: 0;
  text-align: center;
  padding: 1.5rem 1.8rem;
  border: 2px solid #00ff41;
  border-radius: 12px;
  background: rgba(0,255,65,0.05);
  min-width: 120px;
}
.founded-year {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #00ff41;
  line-height: 1;
  font-family: 'Courier New', monospace;
}
.founded-label {
  display: block;
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 4px;
}
.founded-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #00ff41;
}
.founded-text p {
  font-size: 0.88rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.founded-text strong { color: #00ff41; }

/* 个人介绍 */
.boss-intro {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
.boss-avatar {
  flex-shrink: 0;
  text-align: center;
  padding: 1.5rem;
}
.boss-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(0,255,65,0.3));
}
.boss-title {
  font-size: 0.75rem;
  color: #00ff41;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.boss-content h3 {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0,255,65,0.15);
  padding-bottom: 0.5rem;
}
.boss-content h4 {
  font-size: 1rem;
  color: #00ff41;
  margin: 1.4rem 0 0.8rem;
}

/* 承诺金句 */
.boss-motto {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, rgba(0,255,65,0.06) 0%, rgba(0,255,65,0.02) 100%);
  border-left: 3px solid #00ff41;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.2rem;
}
.motto-icon { font-size: 1.5rem; flex-shrink: 0; }
.boss-motto p { font-size: 0.9rem; color: #d0d0d0; line-height: 1.7; margin: 0; }
.boss-motto strong { color: #00ff41; }

/* 技术实力列表 */
.skill-list { list-style: none; padding: 0; margin: 0; }
.skill-list li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.skill-list li:last-child { border-bottom: none; }
.skill-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00ff41;
  border: 1px solid rgba(0,255,65,0.25);
  border-radius: 8px;
  background: rgba(0,255,65,0.05);
  font-family: 'Courier New', monospace;
}
.skill-body { flex: 1; }
.skill-body strong { color: #e0e0e0; display: block; margin-bottom: 0.25rem; }
.skill-body p { font-size: 0.82rem; color: #999; line-height: 1.6; margin: 0; }
.skill-body em { color: #00ff41; font-style: normal; }

/* 优势三栏 */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.adv-card {
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: rgba(13,27,42,0.6);
  border: 1px solid rgba(0,255,65,0.1);
  border-radius: 10px;
  transition: all 0.3s;
}
.adv-card:hover {
  border-color: rgba(0,255,65,0.35);
  box-shadow: 0 0 20px rgba(0,255,65,0.06);
  transform: translateY(-2px);
}
.adv-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.adv-card strong { color: #00ff41; font-size: 0.95rem; }
.adv-card p { font-size: 0.78rem; color: #888; line-height: 1.5; margin-top: 0.4rem; }

/* 更多服务标签 */
.extra-services {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.extra-tag {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  color: #aaa;
  background: rgba(0,255,65,0.06);
  border: 1px solid rgba(0,255,65,0.15);
  border-radius: 20px;
  transition: all 0.3s;
}
.extra-tag:hover {
  color: #00ff41;
  border-color: rgba(0,255,65,0.4);
  background: rgba(0,255,65,0.1);
}

@media (max-width: 768px) {
  .team-founded { flex-direction: column; text-align: center; }
  .founded-badge { min-width: auto; }
  .boss-intro { flex-direction: column; }
  .advantage-grid { grid-template-columns: 1fr; }
  .extra-services { justify-content: center; }
}

/* 参考价标签 */
.product-ref-price {
  font-size: 10px;
  color: #999;
  background: #f0f0f0;
  padding: 1px 4px;
  border-radius: 2px;
  margin-left: 4px;
  cursor: help;
}

/* 京东链接按钮 */
.product-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.btn-jd-link {
  font-size: 11px;
  color: #e4393c;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid #e4393c;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-jd-link:hover {
  background: #e4393c;
  color: white;
}
