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

/* 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 */
.c2b09ef98 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ Header & Navigation ============ */
.c7f655e32 {
  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);
}

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

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

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

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

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

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

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

.c87255c09 a:hover,
.c87255c09 a.cdb62b2c8 {
  color: var(--text-bright);
}

.c87255c09 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);
}

.c87255c09 a:hover::after,
.c87255c09 a.cdb62b2c8::after {
  width: 60%;
}

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

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

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

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

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

.cb72e4a75::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%);
}

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

.cbf6aa1e6 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;
}

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

.cc9ff09cb {
  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 ============ */
.cce540b24 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c40e916b5:hover .c2f2cdada img {
  transform: scale(1.05);
}

.c8c230169 {
  padding: 1.5rem;
}

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

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

.cae7f3eb5 {
  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 */
.cfbea5fbd .c55094935 {
  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);
}

.cfbea5fbd .c91173eec {
  font-size: 0.8rem;
}

.cfbea5fbd .c8222461e {
  color: var(--text-muted);
}

.cfbea5fbd .ca3b2b1f8 {
  color: var(--accent);
  font-weight: 600;
}

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

.cfbea5fbd .cbd820aed .c112f715a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

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

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

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

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

.cf0e28650 .c7ce76489 {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

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

.c933b7148 {
  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;
}

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

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

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

.c933b7148 .cda1dfb59 {
  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;
}

.c933b7148 .c87430755 {
  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);
}

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

/* ============ Countdown Timer ============ */
.c3eea4a3a {
  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;
}

.cf72765d6 {
  text-align: center;
}

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

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

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

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

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

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

.c0ad848ad {
  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);
}

.c0ad848ad.cdb62b2c8 {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
}

.c347a40a5 {
  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) ============ */
.ca31ff320 .ca89626f7 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.ca31ff320 .ca89626f7 img {
  width: 100%;
  transition: transform 0.5s ease;
}

.ca31ff320 .ca89626f7:hover img {
  transform: scale(1.03);
}

.ca31ff320 .c02f5bb7f {
  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);
}

.ca31ff320 .ca89626f7:hover .c02f5bb7f {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

.cb7c397a3 .cbfe204aa::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);
}

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

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

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

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

.c6f4b1c6d .c24ef6c53 {
  color: var(--border-color);
}

/* ============ Tags & Badges ============ */
.c011c2e35 {
  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);
}

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

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

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

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

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

.c25277eef .caa1f7940 {
  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;
}

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

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

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

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

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

.c7ff92779 {
  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 ============ */
.ca7fa0a07 {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.ca7fa0a07 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);
}

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

.ca7fa0a07 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 ============ */
.c4da55b27 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

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

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

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

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

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

.c799ba555 .c4e65256d {
  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);
}

.c799ba555 .c4e65256d:hover {
  background: var(--bg-card-hover);
}

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

.c799ba555.cdb62b2c8 .ca20c4acd {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

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

.c799ba555.cdb62b2c8 .c54cc8bc0 {
  transform: rotate(45deg);
}

/* ============ Filters ============ */
.c91580396 {
  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);
}

.c781b1ebb {
  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);
}

.c781b1ebb:hover,
.c781b1ebb.cdb62b2c8 {
  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 */
.c77aea8c2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.c77aea8c2.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 ============ */
.c17402538 {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--gradient-dark);
}

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

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

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

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

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

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

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

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

.c62ced25c 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) {
  .c77cf89a2 { grid-template-columns: repeat(2, 1fr); }
  .cd2f2bbaa { grid-template-columns: repeat(2, 1fr); }
  .ce51e088f { grid-template-columns: repeat(2, 1fr); }
  .cf0e28650 { columns: 2; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .c5c2902ea { display: flex; }
  
  .c87255c09 {
    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);
  }
  
  .c87255c09.open {
    transform: translateX(0);
  }
  
  .c87255c09 a {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }
  
  .cbf6aa1e6 h1 { font-size: 2.25rem; }
  .ca5a9ad81, .cd2f2bbaa, .c77cf89a2 { grid-template-columns: 1fr; }
  .ce51e088f { grid-template-columns: 1fr; }
  .cf0e28650 { columns: 1; }
  .c2f66a796 { flex-direction: column; }
  .app-showcase { grid-template-columns: 1fr; text-align: center; }
  .c3eea4a3a { flex-wrap: wrap; }
  
  .c2945408e { padding: 3rem 0; }
  .c17402538 { padding: 6rem 0 2rem; }
  .c17402538 h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .cbf6aa1e6 h1 { font-size: 1.75rem; }
  .c2b09ef98 { padding: 0 1rem; }
  .c8c230169 { padding: 1rem; }
  .c91580396 { padding: 1rem; }
}

/* ============ Print Styles ============ */
@media print {
  .c7f655e32, .c129f0370, .c5c2902ea { display: none; }
  body { background: white; color: black; }
  .c40e916b5 { 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);
}
