/* ============================================
   客制化机械键盘与极客外设发烧友平台 - 主样式表
   配色方案：阳极氧化灰 + 赛博朋克紫
   ============================================ */

/* CSS Variables */
:root {
  --primary: #7C3AED;
  --primary-light: #9F67FF;
  --primary-dark: #5B21B6;
  --accent: #06B6D4;
  --accent-light: #22D3EE;
  --bg-dark: #111111;
  --bg-card: #1E1E2E;
  --bg-card-hover: #2A2A3E;
  --text-main: #E4E4F0;
  --text-muted: #9CA3AF;
  --text-bright: #FFFFFF;
  --border-color: #2E2E4E;
  --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --gradient-dark: linear-gradient(180deg, #111111 0%, #1E1E2E 100%);
  --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --font-main: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-bright);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-main);
}

/* Container */
.cbc768287 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ Header & Navigation ============ */
.c15ff2681 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.c15ff2681.scrolled {
  box-shadow: 0 2px 20px rgba(124, 58, 237, 0.2);
}

.c2fd866ee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.c794e46ca {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
}

.c794e46ca img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.c794e46ca .c1781c0e9 {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Navigation */
.c8ff233e3 {
  display: flex;
  align-items: center;
  gap: 0;
}

.c8ff233e3 a {
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.c8ff233e3 a:hover,
.c8ff233e3 a.c6cfd9513 {
  color: var(--text-bright);
}

.c8ff233e3 a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  border-radius: 1px;
  transition: var(--transition);
}

.c8ff233e3 a:hover::after,
.c8ff233e3 a.c6cfd9513::after {
  width: 60%;
}

/* Mobile Menu Toggle */
.c971c58c8 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.c971c58c8 span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ Hero Section ============ */
.ccb38cd6c {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.cfc9f9925 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cfc9f9925 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.cfc9f9925::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.8) 70%, rgba(17,17,17,1) 100%);
}

.ce7e90907 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.ce7e90907 h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowPulse 3s ease-in-out infinite;
}

.ce7e90907 p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.c4b54c7cc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7C3AED, #06B6D4, #7C3AED, #06B6D4);
  background-size: 200% 100%;
  animation: rgbFlow 3s linear infinite;
}

/* ============ Buttons ============ */
.ca0ad5a89 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.c9673c48e {
  background: var(--gradient-purple);
  color: var(--text-bright);
  box-shadow: var(--shadow-glow);
}

.c9673c48e:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
  color: var(--text-bright);
}

.c9673c48e:active {
  transform: translateY(1px) scale(0.98);
}

.c9f1968d3 {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.c9f1968d3:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.c68edb0c7 {
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.c68edb0c7:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--primary);
}

/* ============ Section Styles ============ */
.c0fea5155 {
  padding: 5rem 0;
}

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

.cd1abf2dc h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.cd1abf2dc h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-purple);
  border-radius: 2px;
}

.cd1abf2dc p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ============ Cards ============ */
.c062caea3 {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.c062caea3:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.c4408f81f {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.c062caea3:hover .c4408f81f img {
  transform: scale(1.05);
}

.c1eae8240 {
  padding: 1.5rem;
}

.cc6a5b041 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-bright);
}

.caaa7f9ec {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.caabc0432 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Product Card */
.c77ff3079 .c54869013 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(17, 17, 17, 0.5);
  border-radius: var(--radius-sm);
}

.c77ff3079 .c0348ee2a {
  font-size: 0.8rem;
}

.c77ff3079 .c6417bb35 {
  color: var(--text-muted);
}

.c77ff3079 .cedce5dc2 {
  color: var(--accent);
  font-weight: 600;
}

.c77ff3079 .c363d5deb {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
}

.c77ff3079 .c363d5deb .c434caa20 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ============ Grid Layouts ============ */
.c0c290a19 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cc6839604 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cb17a8f3f {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Masonry / Waterfall */
.ca0dda32c {
  columns: 3;
  column-gap: 1.5rem;
}

.ca0dda32c .c08c86820 {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* ============ Switch Tester ============ */
.c3e5c824d {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cf8d86568 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.cf8d86568:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.cf8d86568 .c55417ed5 {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.cf8d86568 .cb4382229 {
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.cf8d86568 .c8f5ce216 {
  font-size: 0.8rem;
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.cf8d86568 .cb76eeba5 {
  margin-top: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: var(--transition);
}

.cf8d86568 .cb76eeba5:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* ============ Countdown Timer ============ */
.c9d1cc2a2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.c3e68b9af {
  text-align: center;
}

.c3e68b9af .c5b63800f {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  font-family: var(--font-mono);
}

.c3e68b9af .c9724f972 {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.c38126879 {
  flex: 1;
  height: 6px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.c38126879 .cedf32bca {
  height: 100%;
  background: var(--gradient-purple);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* ============ 3D Keyboard Assembler ============ */
.c43843f4e {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
}

.ce4fe942e {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.cad41dd8e {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.cad41dd8e.c6cfd9513 {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
}

.c8787844c {
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

/* ============ Desktop Gallery (Waterfall) ============ */
.c58f4feb3 .c7b4d2416 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.c58f4feb3 .c7b4d2416 img {
  width: 100%;
  transition: transform 0.5s ease;
}

.c58f4feb3 .c7b4d2416:hover img {
  transform: scale(1.03);
}

.c58f4feb3 .c5cda3471 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(17,17,17,0.9));
  opacity: 0;
  transition: var(--transition);
}

.c58f4feb3 .c7b4d2416:hover .c5cda3471 {
  opacity: 1;
}

/* ============ Studio Section ============ */
.c9dbc6f44 {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.c9dbc6f44:hover {
  border-color: var(--primary);
}

.cc085c83c {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cde1e3d86 h3 {
  margin-bottom: 0.5rem;
}

.cde1e3d86 .c5355277e {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.c3fe0ff26 {
  display: flex;
  gap: 0.75rem;
}

.c3fe0ff26 img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-color);
}

/* ============ Tutorial Section ============ */
.c9e7a73df {
  position: relative;
}

.c9e7a73df .c9cbf357c {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
}

.c9e7a73df .c9cbf357c::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(124, 58, 237, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: var(--transition);
}

.c9e7a73df:hover .c9cbf357c::after {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* ============ Breadcrumb ============ */
.c0087deca {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.c0087deca a {
  color: var(--text-muted);
}

.c0087deca a:hover {
  color: var(--accent);
}

.c0087deca .ca50fea57 {
  color: var(--border-color);
}

/* ============ Tags & Badges ============ */
.cb22a2e8b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.c45394d4a {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.cfb27baa9 {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent);
  border-color: rgba(6, 182, 212, 0.3);
}

.cc64f62fb {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.3);
}

/* ============ Footer ============ */
.cdd00c228 {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

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

.c08472f2d .ca7837481 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c08472f2d p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.c46071f90 h4 {
  color: var(--text-bright);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.c46071f90 ul li {
  margin-bottom: 0.5rem;
}

.c46071f90 ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.c46071f90 ul li a:hover {
  color: var(--accent);
}

.cec82cc1f {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ Search Page ============ */
.cbd8cb137 {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cbd8cb137 input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 3.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.cbd8cb137 input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.cbd8cb137 button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-light);
  font-size: 1.25rem;
  cursor: pointer;
}

.search-results .result-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.search-results .result-item:hover {
  background: var(--bg-card);
}

.search-results .result-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.search-results .result-url {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.search-results .result-desc {
  color: var(--text-main);
  font-size: 0.9rem;
}

/* ============ 404 Page ============ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page .error-code {
  font-size: 8rem;
  font-weight: 900;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ============ Table Styles ============ */
.c6526a900 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.c6526a900 th,
.c6526a900 td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.c6526a900 th {
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.c6526a900 td {
  color: var(--text-main);
  font-size: 0.9rem;
}

.c6526a900 tr:hover td {
  background: rgba(124, 58, 237, 0.05);
}

/* ============ FAQ Section ============ */
.c3f22c62a .c4ebce006 {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.c4ebce006 .c4e608432 {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-bright);
  background: var(--bg-card);
  transition: var(--transition);
}

.c4ebce006 .c4e608432:hover {
  background: var(--bg-card-hover);
}

.c4ebce006 .cd58c9256 {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
  line-height: 1.8;
}

.c4ebce006.c6cfd9513 .cd58c9256 {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

.c4ebce006 .c31fff5e5 {
  font-size: 1.25rem;
  color: var(--primary-light);
  transition: var(--transition);
}

.c4ebce006.c6cfd9513 .c31fff5e5 {
  transform: rotate(45deg);
}

/* ============ Filters ============ */
.ccec0c286 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.c686d8a23 {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.c686d8a23:hover,
.c686d8a23.c6cfd9513 {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
}

/* ============ Animations ============ */
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
  50% { text-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

@keyframes rgbFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

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

@keyframes keyPress {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-keyPress {
  animation: keyPress 0.15s ease;
}

/* Scroll Reveal */
.c7fec2de9 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.c7fec2de9.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RGB Border Animation */
.rgb-border {
  position: relative;
}

.rgb-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(45deg, #7C3AED, #06B6D4, #7C3AED, #06B6D4);
  background-size: 300% 300%;
  animation: rgbFlow 4s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rgb-border:hover::before {
  opacity: 1;
}

/* ============ Page Content ============ */
.cda5f30c5 {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--gradient-dark);
}

.cda5f30c5 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cda5f30c5 p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.c268c6994 {
  padding: 3rem 0 5rem;
}

/* ============ Compliance Pages ============ */
.c14a925f0 {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.c14a925f0 h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.c14a925f0 h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.c14a925f0 p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.c14a925f0 ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.c14a925f0 ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ============ APP Download Page ============ */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.app-mockup {
  text-align: center;
}

.app-mockup img {
  max-width: 300px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.app-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.app-features {
  margin: 2rem 0;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.app-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============ Responsive Design ============ */
@media (max-width: 1024px) {
  .cb17a8f3f { grid-template-columns: repeat(2, 1fr); }
  .cc6839604 { grid-template-columns: repeat(2, 1fr); }
  .cfe2cd9f6 { grid-template-columns: repeat(2, 1fr); }
  .ca0dda32c { columns: 2; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .c971c58c8 { display: flex; }
  
  .c8ff233e3 {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: var(--transition);
  }
  
  .c8ff233e3.open {
    transform: translateX(0);
  }
  
  .c8ff233e3 a {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }
  
  .ce7e90907 h1 { font-size: 2.25rem; }
  .c0c290a19, .cc6839604, .cb17a8f3f { grid-template-columns: 1fr; }
  .cfe2cd9f6 { grid-template-columns: 1fr; }
  .ca0dda32c { columns: 1; }
  .c9dbc6f44 { flex-direction: column; }
  .app-showcase { grid-template-columns: 1fr; text-align: center; }
  .c9d1cc2a2 { flex-wrap: wrap; }
  
  .c0fea5155 { padding: 3rem 0; }
  .cda5f30c5 { padding: 6rem 0 2rem; }
  .cda5f30c5 h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .ce7e90907 h1 { font-size: 1.75rem; }
  .cbc768287 { padding: 0 1rem; }
  .c1eae8240 { padding: 1rem; }
  .ccec0c286 { padding: 1rem; }
}

/* ============ Print Styles ============ */
@media print {
  .c15ff2681, .cdd00c228, .c971c58c8 { display: none; }
  body { background: white; color: black; }
  .c062caea3 { border: 1px solid #ccc; box-shadow: none; }
}

/* ============ Accessibility ============ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
