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

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

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

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

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

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

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

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

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

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

.c030bac00 a:hover,
.c030bac00 a.c4103c6ff {
  color: var(--text-bright);
}

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

.c030bac00 a:hover::after,
.c030bac00 a.c4103c6ff::after {
  width: 60%;
}

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

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

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

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

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

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

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

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

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

.c48516c0b {
  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 ============ */
.cdbe19ea8 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c3be6ce91:hover .c6036472f img {
  transform: scale(1.05);
}

.c0d7f0fe8 {
  padding: 1.5rem;
}

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

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

.cf8c91f87 {
  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 */
.c007d8d5a .cf3dbe6a0 {
  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);
}

.c007d8d5a .c682dc3ac {
  font-size: 0.8rem;
}

.c007d8d5a .c283b0a06 {
  color: var(--text-muted);
}

.c007d8d5a .c44b7ab48 {
  color: var(--accent);
  font-weight: 600;
}

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

.c007d8d5a .cdeaf9745 .c67d6d2f2 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

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

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

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

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

.c8abf59b9 .c8354e800 {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.ce766123d {
  text-align: center;
}

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

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

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

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

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

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

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

.cb19b4ea6.c4103c6ff {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
}

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

.c0c5da928 .ca2f9575b img {
  width: 100%;
  transition: transform 0.5s ease;
}

.c0c5da928 .ca2f9575b:hover img {
  transform: scale(1.03);
}

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

.c0c5da928 .ca2f9575b:hover .c9d9482de {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

.ce8304082 .c2d5a5736::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);
}

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

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

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

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

.c1a3e3a52 .c214cdab2 {
  color: var(--border-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd6aa8e85 .c14548005:hover {
  background: var(--bg-card-hover);
}

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

.cd6aa8e85.c4103c6ff .cb70ed5af {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

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

.cd6aa8e85.c4103c6ff .c9363b339 {
  transform: rotate(45deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

.cc6e54de8 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) {
  .cc7b37bef { grid-template-columns: repeat(2, 1fr); }
  .cd96ed354 { grid-template-columns: repeat(2, 1fr); }
  .cbcda0773 { grid-template-columns: repeat(2, 1fr); }
  .c8abf59b9 { columns: 2; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .cbca1a347 { display: flex; }
  
  .c030bac00 {
    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);
  }
  
  .c030bac00.open {
    transform: translateX(0);
  }
  
  .c030bac00 a {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }
  
  .cccf0e101 h1 { font-size: 2.25rem; }
  .c1c88096b, .cd96ed354, .cc7b37bef { grid-template-columns: 1fr; }
  .cbcda0773 { grid-template-columns: 1fr; }
  .c8abf59b9 { columns: 1; }
  .c972f3737 { flex-direction: column; }
  .app-showcase { grid-template-columns: 1fr; text-align: center; }
  .c7a66e599 { flex-wrap: wrap; }
  
  .c037e400e { padding: 3rem 0; }
  .c9ddc11ba { padding: 6rem 0 2rem; }
  .c9ddc11ba h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .cccf0e101 h1 { font-size: 1.75rem; }
  .cb45f1b72 { padding: 0 1rem; }
  .c0d7f0fe8 { padding: 1rem; }
  .ccffefa22 { padding: 1rem; }
}

/* ============ Print Styles ============ */
@media print {
  .cbb84b38e, .c0923279e, .cbca1a347 { display: none; }
  body { background: white; color: black; }
  .c3be6ce91 { 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);
}
