/* ===== TPlus Landing Page Style System ===== */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg-deep: #070708;
  --bg-card: #121215;
  --bg-input: #1a1a1f;
  --accent-pink: #faa2ca;
  --accent-pink-glow: rgba(250, 162, 202, 0.35);
  --accent-green: #9fef00;
  --accent-green-glow: rgba(159, 239, 0, 0.35);
  --selection-bg: var(--accent-pink-glow);
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(250, 162, 202, 0.4);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --glass-bg: rgba(18, 18, 21, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

  /* Button Conic Gradients */
  --btn-primary-conic: conic-gradient(from var(--angle), #ffffff, rgba(255, 255, 255, 0.15), #ffffff);
  --btn-accent-conic: conic-gradient(from var(--angle), var(--accent-pink), rgba(250, 162, 202, 0.15), var(--accent-pink));

  /* Variables for Light Mode Refactoring */
  --badge-pink-bg: rgba(250, 162, 202, 0.1);
  --badge-pink-border: rgba(250, 162, 202, 0.25);
  --menu-item-hover-border: rgba(250, 162, 202, 0.2);
  --menu-num-bg: rgba(250, 162, 202, 0.1);
  --spinner-border: rgba(250, 162, 202, 0.2);
  --feature-card-hover-border: rgba(250, 162, 202, 0.25);
  --support-icon-bg: rgba(250, 162, 202, 0.08);
  --support-icon-border: rgba(250, 162, 202, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background grid effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

/* Radial Glows */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 15%, rgba(250, 162, 202, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 90% 85%, rgba(159, 239, 0, 0.07) 0%, transparent 55%);
  z-index: -2;
  pointer-events: none;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-svg {
  color: var(--accent-pink);
  filter: drop-shadow(0 0 8px var(--accent-pink-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

body.light-mode .lang-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
  color: var(--accent-pink);
  background-color: var(--badge-pink-bg);
  border: 1px solid var(--badge-pink-border);
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

/* Toggle Sun/Moon visibility */
.theme-toggle-btn .moon-icon {
  display: none;
}
.theme-toggle-btn .sun-icon {
  display: block;
}

body.light-mode .theme-toggle-btn .moon-icon {
  display: block;
}
body.light-mode .theme-toggle-btn .sun-icon {
  display: none;
}

.btn-nav-donate {
  padding: 6px 14px;
  font-size: 0.85rem;
}

/* Buttons */
.btn {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: transparent;
  color: var(--text-primary);
  position: relative;
  border: none;
  z-index: 1;
  transition: var(--transition-smooth);
}

/* Rotating Gradient Border */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1.5px solid transparent;
  border-radius: inherit;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--btn-primary-conic);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: -1;
  transition: var(--transition-smooth);
  animation: rotateBorder 3s linear infinite;
}

/* Neon Glow */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--btn-primary-conic);
  border-radius: inherit;
  z-index: -2;
  filter: blur(8px);
  opacity: 0.45;
  transition: var(--transition-smooth);
  animation: rotateBorder 3s linear infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  background-image: linear-gradient(var(--bg-input), var(--bg-input)), var(--btn-primary-conic);
}

.btn-primary:hover::before {
  filter: blur(14px);
  opacity: 0.85;
}

@keyframes rotateBorder {
  to {
    --angle: 360deg;
  }
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
}

.btn-accent {
  background: transparent;
  color: var(--accent-pink);
  position: relative;
  border: none;
  z-index: 1;
  transition: var(--transition-smooth);
  text-shadow: 0 0 10px var(--accent-pink-glow);
}

/* Rotating Gradient Border (accent) */
.btn-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1.5px solid transparent;
  border-radius: inherit;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--btn-accent-conic);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: -1;
  transition: var(--transition-smooth);
  animation: rotateBorder 3s linear infinite;
}

/* Neon Glow (accent) */
.btn-accent::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--btn-accent-conic);
  border-radius: inherit;
  z-index: -2;
  filter: blur(8px);
  opacity: 0.45;
  transition: var(--transition-smooth);
  animation: rotateBorder 3s linear infinite;
}

.btn-accent:hover {
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-accent:hover::after {
  background-image: linear-gradient(var(--bg-input), var(--bg-input)), var(--btn-accent-conic);
}

.btn-accent:hover::before {
  filter: blur(14px);
  opacity: 0.85;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Hero Section */
.hero {
  max-width: 800px;
  margin: 80px auto 40px auto;
  text-align: center;
  padding: 0 20px;
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background-color: var(--badge-pink-bg);
  color: var(--accent-pink);
  border: 1px solid var(--badge-pink-border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--accent-pink);
  text-shadow: 0 0 30px var(--accent-pink-glow);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto 40px auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

/* Simulator Section */
.simulator-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-secondary);
}

/* Desktop screen mockup */
.desktop-mockup {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.window-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.close { background-color: #ff5f56; }
.dot.minimize { background-color: #ffbd2e; }
.dot.maximize { background-color: #27c93f; }

.mockup-desktop-title {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  display: block;
  margin-left: 20px;
}

.mockup-tabs {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.mockup-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.mockup-tab:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.mockup-tab.active {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Light mode overrides for tabs */
body.light-mode .mockup-tab:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

body.light-mode .mockup-tab.active {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Simulated Desktop Screen */
.mockup-desktop-screen {
  position: relative;
  height: 520px;
  background: radial-gradient(circle at 50% 50%, #1e1e24 0%, #0d0d11 100%);
  overflow: hidden;
  box-sizing: border-box;
}

body.light-mode .mockup-desktop-screen {
  background: radial-gradient(circle at 50% 50%, #e2e8f0 0%, #cbd5e1 100%);
}

/* Overlapping Window Frames */
.window-frame {
  position: absolute;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s, z-index 0s;
  z-index: 2;
  box-sizing: border-box;
}

body.light-mode .window-frame {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.window-frame.active {
  z-index: 6;
  border-color: var(--accent-pink);
  box-shadow: 0 15px 40px rgba(250, 162, 202, 0.25), 0 0 1px var(--accent-pink-glow);
}

body.light-mode .window-frame.active {
  border-color: var(--accent-green);
  box-shadow: 0 15px 40px rgba(159, 239, 0, 0.2), 0 0 1px var(--accent-green-glow);
}

.window-frame-header {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.light-mode .window-frame-header {
  background-color: rgba(0, 0, 0, 0.015);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.window-frame-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.window-frame-body {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  box-sizing: border-box;
}

/* Notepad Window Placement */
#window-notepad {
  left: 20px;
  top: 20px;
  width: 380px;
  height: 200px;
}

/* Slack Window Placement */
#window-slack {
  right: 20px;
  top: 30px;
  width: 380px;
  height: 200px;
}

/* Chrome Window Placement */
#window-chrome {
  left: 30px;
  top: 240px;
  width: 390px;
  height: 250px;
}

/* VS Code Window Placement */
#window-vscode {
  right: 30px;
  top: 250px;
  width: 390px;
  height: 240px;
}

/* Content Pane inside Frames */
.app-content {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  padding: 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left;
  overflow-y: auto;
  box-sizing: border-box;
}

.selection-target {
  background: linear-gradient(90deg, var(--selection-bg) var(--highlight-percent, 0%), transparent var(--highlight-percent, 0%));
  border-radius: 2px;
  transition: background 0.05s linear;
}

/* Notepad Content Styling */
.content-notepad {
  color: var(--text-secondary);
}

body.light-mode .content-notepad {
  color: #334155;
}

/* Slack Content & Bubbles */
.content-slack {
  display: flex;
  flex-direction: column;
}

.slack-bubble {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.slack-avatar {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.slack-msg-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.84rem;
}

.slack-msg-header {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.slack-user {
  font-weight: 700;
  color: var(--text-primary);
}

body.light-mode .slack-user {
  color: #1e293b;
}

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

.slack-text {
  color: var(--text-secondary);
  line-height: 1.5;
}

body.light-mode .slack-text {
  color: #334155;
}

/* Slack Header Styling */
.slack-channel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.01);
  user-select: none;
}

body.light-mode .slack-channel-header {
  color: #1e293b;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.slack-channel-header .hashtag {
  color: var(--text-muted);
}

/* Chrome Content & Elements */
.content-chrome {
  padding-top: 10px;
}

.browser-address-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-input);
  border-bottom: 1px solid var(--border-color);
  padding: 6px 12px;
  font-size: 0.8rem;
  user-select: none;
}

body.light-mode .browser-address-bar {
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.browser-controls {
  display: flex;
  gap: 8px;
  color: var(--text-muted);
}

.browser-url {
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

body.light-mode .browser-url {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #334155;
}

.url-text {
  font-family: var(--font-sans);
}

.browser-controls-mini {
  display: flex;
  gap: 4px;
  margin-right: 8px;
}

.dot-mini {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
  opacity: 0.5;
}

.wiki-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

body.light-mode .wiki-title {
  color: #0f172a;
}

.wiki-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

body.light-mode .wiki-text {
  color: #334155;
}

/* VS Code Content & Code Styling */
.content-vscode {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.5;
  background-color: #181818 !important;
  color: #d4d4d4 !important;
  padding-left: 54px;
  flex-grow: 1;
}

.editor-line-numbers-mini {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38px;
  background-color: rgba(0, 0, 0, 0.25);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #858585;
  user-select: none;
  z-index: 3;
}

.code-keyword { color: #569cd6; }
.code-func { color: #dcdcaa; }
.code-comment { color: #6a9955; }

/* Keyboard Hotkey Badge (Global Center Overlay) */
.hotkey-badge {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(18, 18, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-pink-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotkey-badge.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hotkey-badge.pressed {
  transform: translate(-50%, -50%) scale(0.94);
  background: var(--accent-pink);
  color: var(--bg-deep);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-pink-glow);
}

body.light-mode .hotkey-badge {
  background: rgba(250, 249, 246, 0.92);
  border: 1px solid rgba(28, 28, 31, 0.15);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px var(--accent-green-glow);
}

body.light-mode .hotkey-badge.pressed {
  background: var(--accent-green);
  color: var(--bg-deep);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 20px var(--accent-green-glow);
}

/* Floating cursor arrow style */
.sim-cursor {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 50;
  pointer-events: none;
  transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1), top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sim-cursor svg {
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}

@keyframes flashGlowGreen {
  0% {
    background-color: var(--accent-green-glow);
    box-shadow: 0 0 15px var(--accent-green-glow);
  }
  100% {
    background-color: transparent;
    box-shadow: none;
  }
}

@keyframes flashGlowPink {
  0% {
    background-color: var(--accent-pink-glow);
    box-shadow: 0 0 15px var(--accent-pink-glow);
  }
  100% {
    background-color: transparent;
    box-shadow: none;
  }
}

.flash-glow {
  border-radius: 4px;
  animation: flashGlowPink 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.light-mode .flash-glow {
  animation: flashGlowGreen 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Simulated Overlay matching Svelte CSS but floating absolutely */
.simulated-overlay {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 360px;
  height: auto;
  max-height: calc(100% - 80px);
  z-index: 10;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.simulated-overlay.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.overlay-inner {
  padding: 16px;
}

.overlay-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.overlay-search-bar:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 1px var(--border-focus);
}

.overlay-search-bar input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 8px 0;
  outline: none;
  margin-bottom: 0;
}

.search-logo-svg {
  color: var(--accent-pink);
  flex-shrink: 0;
  opacity: 0.8;
}

.overlay-prompt-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.menu-item:hover,
.menu-item.hover-simulated {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
  border-color: var(--menu-item-hover-border);
}

.menu-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-pink);
  margin-right: 12px;
  background-color: var(--menu-num-bg);
  padding: 2px 6px;
  border-radius: 4px;
}

.menu-text {
  color: var(--text-primary);
  font-weight: 500;
}

/* Simulated Loader & Result */
.overlay-result-view {
  display: none;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.result-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--spinner-border);
  border-top-color: var(--accent-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.result-content-wrapper {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.result-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.result-text {
  font-size: 1.05rem;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-pink);
  color: var(--text-primary);
  max-height: 240px;
  overflow-y: auto;
  word-break: break-word;
}

.result-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

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

/* Features Section */
.features {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--feature-card-hover-border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Modal Backdrop & Support Frame */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-logo-svg {
  color: var(--accent-pink);
  margin-bottom: 16px;
}

.modal-header h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Pricing Grid */
.pricing-presets {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.preset-btn {
  flex: 1;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.preset-btn:hover {
  border-color: var(--text-secondary);
  background-color: rgba(255, 255, 255, 0.05);
}

.preset-btn.active {
  background-color: var(--accent-pink);
  border-color: var(--accent-pink);
  color: var(--bg-deep);
  box-shadow: 0 0 12px var(--accent-pink-glow);
}

.custom-price-row {
  display: flex;
  align-items: center;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.custom-price-row:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 1px var(--border-focus);
}

.currency-symbol {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-right: 8px;
}

#custom-price-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Removes up/down arrows in number fields */
#custom-price-input::-webkit-outer-spin-button,
#custom-price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dynamic-support-message {
  font-size: 0.88rem;
  color: var(--accent-pink);
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donation-platforms {
  display: none;
  border-top: 1px dashed var(--border-color);
  padding-top: 16px;
  text-align: center;
}

.donation-platforms p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.platform-grid {
  display: flex;
  gap: 8px;
}

.platform-link {
  flex: 1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.platform-link.kofi {
  background-color: #29abe2;
  color: white;
}

.platform-link.bmac {
  background-color: #ffdd00;
  color: black;
}

.platform-link.github {
  background-color: #24292e;
  color: white;
  border: 1px solid var(--border-color);
}

.platform-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.modal-footer-links {
  text-align: center;
  font-size: 0.85rem;
}

#free-download-link {
  color: var(--text-muted);
  text-decoration: underline;
  transition: var(--transition-smooth);
}

#free-download-link:hover {
  color: var(--text-primary);
}

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.badge-platform {
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  font-weight: 500;
}

.badge-platform.active {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
}

/* Support Section */
.support-section {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
}

.support-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Creator Profile */
.creator-profile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.creator-avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 2.5px;
  background: transparent;
  z-index: 1;
}

.creator-avatar-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-green);
  z-index: -1;
  box-shadow: 0 0 12px var(--accent-green-glow);
}

.creator-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg-deep);
  box-shadow: 0 0 15px var(--accent-green-glow);
}

.creator-profile .badge {
  color: var(--accent-green);
  border-color: var(--accent-green-glow);
  background-color: rgba(159, 239, 0, 0.08);
  box-shadow: 0 0 10px rgba(159, 239, 0, 0.05);
}

.creator-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.creator-title-block .badge {
  margin-bottom: 4px;
  width: fit-content;
}

.creator-name {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
}

.creator-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  font-family: var(--font-mono);
}

.about-clip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: var(--transition-smooth);
}

.about-clip-link:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--accent-green-glow);
}

.creator-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.creator-bio strong {
  color: var(--accent-pink);
}

/* Support Card Wrapper */
.support-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: transparent;
  overflow: visible;
  z-index: 1;
}

.support-card-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from var(--angle), var(--accent-pink), var(--accent-green), var(--accent-pink));
  z-index: -2;
  animation: rotateBorder 6s linear infinite;
}

.support-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: calc(var(--radius-lg) - 1.5px);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
  text-align: center;
}

.support-card-glow {
  position: absolute;
  inset: -10px;
  background: conic-gradient(from var(--angle), var(--accent-pink), var(--accent-green), var(--accent-pink));
  border-radius: inherit;
  z-index: -3;
  filter: blur(35px);
  opacity: 0.25;
  animation: rotateBorder 6s linear infinite;
}

.support-icon-container {
  background: var(--support-icon-bg);
  border: 1px solid var(--support-icon-border);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  margin-bottom: 4px;
  filter: drop-shadow(0 0 12px var(--accent-pink-glow));
}

.support-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
}

.support-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.support-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.support-donate-btn {
  width: 100%;
}

.support-ctas .btn-secondary {
  font-size: 0.9rem;
  padding: 12px;
}

/* Footer */
.footer {
  max-width: 1200px;
  margin: 60px auto 40px auto;
  padding: 0 40px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding-top: 30px;
}

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

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Extra graphics & Floating Logo animation */
.hero-logo-container {
  margin-bottom: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-svg {
  color: var(--accent-pink);
  filter: drop-shadow(0 0 15px var(--accent-pink-glow)) drop-shadow(0 0 5px rgba(159, 239, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}

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

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }


/* Responsive Rules */
@media (max-width: 992px) {
  .mockup-desktop-screen {
    height: 480px;
  }
  
  .sim-cursor {
    display: none;
  }

  .window-frame {
    display: none;
  }

  .window-frame.active {
    display: flex;
    position: relative;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  
  .simulated-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: auto;
    top: auto;
    width: calc(100% - 40px);
    max-width: 340px;
    transform: translateY(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  .simulated-overlay.show {
    transform: translateY(0);
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .creator-profile {
    align-items: center;
    text-align: center;
  }

  .creator-header {
    flex-direction: column;
    gap: 16px;
  }

  .creator-title-block {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .pricing-presets {
    flex-wrap: wrap;
  }
  
  .preset-btn {
    flex: 1 1 40%;
  }

  .support-card {
    padding: 40px 20px;
  }

  .support-title {
    font-size: 1.8rem;
  }

  .support-text {
    font-size: 1rem;
  }
}

/* ===== Light Mode (Writer Mode) Overrides ===== */
body.light-mode {
  --bg-deep: #f5f4f0; /* warm book paper */
  --bg-card: #faf9f6; /* slightly lighter card paper */
  --bg-input: #eae9e3; /* input fields */
  --accent-pink: #e0315c; /* punchy, lighter, more saturated neon-adjacent red/pink */
  --accent-pink-glow: rgba(224, 49, 92, 0.15);
  --accent-green: hsl(78, 100%, 42%); /* highly saturated neon green */
  --accent-green-glow: hsla(78, 100%, 42%, 0.25);
  --selection-bg: var(--accent-green-glow);
  --text-primary: #1c1c1f; /* charcoal ink */
  --text-secondary: #4a4a4f; /* deep gray-ink */
  --text-muted: #7d7d82; /* light gray-ink */
  --border-color: rgba(28, 28, 31, 0.08);
  --border-focus: rgba(224, 49, 92, 0.35);
  --glass-bg: rgba(250, 249, 246, 0.85);
  --glass-border: rgba(28, 28, 31, 0.08);
  --font-title: 'Playfair Display', Georgia, serif;
  
  --badge-pink-bg: rgba(224, 49, 92, 0.06);
  --badge-pink-border: rgba(224, 49, 92, 0.15);
  --menu-item-hover-border: rgba(224, 49, 92, 0.15);
  --menu-num-bg: rgba(224, 49, 92, 0.08);
  --spinner-border: rgba(224, 49, 92, 0.15);
  --feature-card-hover-border: rgba(224, 49, 92, 0.15);
  --support-icon-bg: rgba(224, 49, 92, 0.06);
  --support-icon-border: rgba(224, 49, 92, 0.15);

  /* Button Conic Gradients */
  --btn-primary-conic: conic-gradient(from var(--angle), #1c1c1f, rgba(28, 28, 31, 0.15), #1c1c1f);
  --btn-accent-conic: conic-gradient(from var(--angle), var(--accent-pink), rgba(224, 49, 92, 0.15), var(--accent-pink));
}

/* Background overrides for Light Mode grid and glows */
body.light-mode::before {
  background-image: 
    linear-gradient(rgba(28, 28, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 31, 0.025) 1px, transparent 1px);
}

body.light-mode::after {
  background: 
    radial-gradient(circle at 15% 20%, rgba(160, 44, 72, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(46, 92, 59, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(220, 215, 200, 0.12) 0%, transparent 80%);
}

/* Light mode support card glow adjustment */
body.light-mode .support-card-glow {
  opacity: 0.15;
  filter: blur(40px);
}

/* Theme toggle button light mode hover */
body.light-mode .theme-toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Button background gradients overrides to match paper backgrounds */
body.light-mode .btn-primary::after {
  background: #faf9f6;
  background-image: linear-gradient(#faf9f6, #faf9f6), var(--btn-primary-conic);
}
body.light-mode .btn-accent::after {
  background: #faf9f6;
  background-image: linear-gradient(#faf9f6, #faf9f6), var(--btn-accent-conic);
}

body.light-mode .btn-primary:hover::after {
  background: #f0eee6;
  background-image: linear-gradient(#f0eee6, #f0eee6), var(--btn-primary-conic);
}
body.light-mode .btn-accent:hover::after {
  background: #f0eee6;
  background-image: linear-gradient(#f0eee6, #f0eee6), var(--btn-accent-conic);
}

body.light-mode .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Image border styling in light mode */
body.light-mode .creator-avatar {
  border-color: var(--bg-deep);
  box-shadow: 0 0 15px var(--accent-green-glow);
}

/* Text area & Simulated Output overrides */
body.light-mode .result-text {
  background-color: rgba(0, 0, 0, 0.035);
}

body.light-mode .menu-item {
  background-color: rgba(0, 0, 0, 0.015);
}

body.light-mode .menu-item:hover,
body.light-mode .menu-item.hover-simulated {
  background-color: rgba(0, 0, 0, 0.035);
  border-color: var(--menu-item-hover-border);
}

body.light-mode .mockup-header {
  background-color: rgba(0, 0, 0, 0.02);
}

body.light-mode .hero-logo-svg {
  filter: drop-shadow(0 0 15px var(--accent-pink-glow)) drop-shadow(0 0 5px rgba(46, 92, 59, 0.08));
}

body.light-mode .creator-bio strong {
  color: var(--accent-pink);
}

/* Responsive adjustment override for overlay in mobile in light mode */
@media (max-width: 992px) {
  body.light-mode .simulated-overlay {
    background: rgba(250, 249, 246, 0.6);
  }
}

/* ===== How to Use Section ===== */
.how-to-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.howto-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.howto-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-pink-glow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 1px var(--accent-pink-glow);
}

.howto-grid .howto-card:nth-child(1) { transition-delay: 0.1s; }
.howto-grid .howto-card:nth-child(2) { transition-delay: 0.2s; }
.howto-grid .howto-card:nth-child(3) { transition-delay: 0.3s; }
.howto-grid .howto-card:nth-child(4) { transition-delay: 0.4s; }

.howto-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  opacity: 0.85;
}

.howto-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.howto-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Keyboard styling for hotkeys */
kbd {
  background-color: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.05), 0 2px 3px rgba(0, 0, 0, 0.35);
  color: var(--text-primary);
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 6px;
  white-space: nowrap;
  margin: 0 2px;
  vertical-align: middle;
}

/* Light Mode Overrides for How to Use */
body.light-mode .howto-card {
  background-color: rgba(0, 0, 0, 0.012);
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .howto-card:hover {
  background-color: rgba(0, 0, 0, 0.02);
  border-color: var(--accent-pink-glow);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06), 0 0 1px var(--accent-pink-glow);
}

body.light-mode kbd {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  box-shadow: 0 2px 0 #94a3b8, 0 2px 3px rgba(0, 0, 0, 0.05);
  color: #334155;
}
