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

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

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

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

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

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

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

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

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

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

.c593cd716 a:hover,
.c593cd716 a.c45447fb0 {
  color: var(--text-bright);
}

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

.c593cd716 a:hover::after,
.c593cd716 a.c45447fb0::after {
  width: 60%;
}

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

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

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

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

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

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

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

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

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

.cd088b14d {
  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 ============ */
.cad49a69e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c518869b4:hover .c6e161ffc img {
  transform: scale(1.05);
}

.c4ad8af23 {
  padding: 1.5rem;
}

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

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

.c879ee2bb {
  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 */
.ca4c860d9 .ce99409d3 {
  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);
}

.ca4c860d9 .c65c192cf {
  font-size: 0.8rem;
}

.ca4c860d9 .c5edef55a {
  color: var(--text-muted);
}

.ca4c860d9 .c3f8aa385 {
  color: var(--accent);
  font-weight: 600;
}

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

.ca4c860d9 .c6933d4bd .cf298a2be {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

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

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

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

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

.c0b119e88 .c423c621e {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c79910fc3 {
  text-align: center;
}

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

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

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

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

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

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

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

.cb44d20e0.c45447fb0 {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
}

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

.cd04865f8 .cfe3db916 img {
  width: 100%;
  transition: transform 0.5s ease;
}

.cd04865f8 .cfe3db916:hover img {
  transform: scale(1.03);
}

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

.cd04865f8 .cfe3db916:hover .c7f6e95e7 {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

.c20d81c71 .c18d79f94::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);
}

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

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

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

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

.c25c888bd .cfd99dd9e {
  color: var(--border-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cda7ffdb2 .cf8aeec73:hover {
  background: var(--bg-card-hover);
}

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

.cda7ffdb2.c45447fb0 .c9ddb98c9 {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

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

.cda7ffdb2.c45447fb0 .c4210652a {
  transform: rotate(45deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

.c41592032 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) {
  .cbc767a40 { grid-template-columns: repeat(2, 1fr); }
  .c9422ce31 { grid-template-columns: repeat(2, 1fr); }
  .c7fd883ca { grid-template-columns: repeat(2, 1fr); }
  .c0b119e88 { columns: 2; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .c1fc8024b { display: flex; }
  
  .c593cd716 {
    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);
  }
  
  .c593cd716.open {
    transform: translateX(0);
  }
  
  .c593cd716 a {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }
  
  .c7e77dc0e h1 { font-size: 2.25rem; }
  .c9198d48b, .c9422ce31, .cbc767a40 { grid-template-columns: 1fr; }
  .c7fd883ca { grid-template-columns: 1fr; }
  .c0b119e88 { columns: 1; }
  .c70994fa6 { flex-direction: column; }
  .app-showcase { grid-template-columns: 1fr; text-align: center; }
  .c4aa7fe2b { flex-wrap: wrap; }
  
  .c0957497f { padding: 3rem 0; }
  .c25873348 { padding: 6rem 0 2rem; }
  .c25873348 h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .c7e77dc0e h1 { font-size: 1.75rem; }
  .c44338560 { padding: 0 1rem; }
  .c4ad8af23 { padding: 1rem; }
  .c899753b6 { padding: 1rem; }
}

/* ============ Print Styles ============ */
@media print {
  .c437f0de2, .c259d4dae, .c1fc8024b { display: none; }
  body { background: white; color: black; }
  .c518869b4 { 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);
}
