/* Import Inter from Google Fonts for enhanced typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* System modern sans-serif stack with Inter preferred */
:root{
  --bg: #000000; /* solid black */
  --text: #ffffff; /* pure white */
  --muted: rgba(255,255,255,0.85);
  --link: #ffffff;
  --gap: 1.25rem;
  --font-stack: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-stack);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  overflow-y:auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  position: relative;
}

/* Subtle scan line effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(255,255,255,0.015) 50%
  );
  background-size: 100% 3px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.8;
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Center everything and make it responsive */
body{
  padding:0;
}

main{
  text-align:center;
  overflow:visible;
}

pre{
  margin:0;
  overflow:visible;
  white-space:pre;
  display:inline-block;
}

h1{
  margin:0 0 0.5rem 0;
  font-size:clamp(36px,8vw,96px);
  line-height:1;
  font-weight:800;
  letter-spacing: -0.02em;
  color:var(--text);
}

h2{
  margin:0 0 1rem 0;
  font-size:clamp(16px,2.2vw,22px);
  font-weight:600;
  color:var(--muted);
  opacity:0.95;
}

p{
  margin:0 0 1.25rem 0;
  font-size:clamp(14px,1.6vw,18px);
  color:var(--muted);
  line-height:1.6;
}

/* Navigation links */
nav{
  margin-top:0.5rem;
}

ul.links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:var(--gap);
  justify-content:center;
}

ul.links li a{
  color:var(--link);
  text-decoration:none;
  font-size:0.95em;
  opacity:0.95;
  transition:opacity 180ms ease, transform 180ms ease;
  border-bottom:2px solid transparent;
  padding-bottom:2px;
}

ul.links li a:hover{
  opacity:1;
  border-bottom-color:var(--link);
}

/* Gate (Auth Screen) */
#gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#gate.hidden {
  animation: fadeOut 0.4s ease-out forwards;
}

@keyframes fadeOut {
  to { 
    opacity: 0;
    pointer-events: none;
  }
}

#token-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-size: 24px;
  outline: none;
  caret-color: #ffffff;
  width: 300px;
  text-align: center;
  letter-spacing: 2px;
  padding: 0.5rem;
  transition: border-color 0.3s ease;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 50% { caret-color: #ffffff; }
  51%, 100% { caret-color: transparent; }
}

#token-input:focus {
  border-bottom-color: transparent;
}

#token-input::selection {
  background: rgba(0,255,0,0.2);
}

/* The Keep Layout */
#keep {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

#keep-header {
  flex-shrink: 0;
  padding: 2rem 2rem 1rem 2rem;
  text-align: left;
}

/* Terminal Styles */
#terminal {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

#terminal-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

#prompt-text {
  color: #00ff00;
  font-weight: bold;
}

#active-project {
  color: #00ffff;
  font-weight: bold;
}

#active-project:not(:empty)::before {
  content: '~';
  color: rgba(255,255,255,0.6);
  margin-right: 0.25rem;
}

.prompt-symbol {
  color: rgba(255,255,255,0.9);
  margin-left: 0.25rem;
}

#terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  outline: none;
  padding: 0;
  margin-left: 0.5rem;
  caret-color: #00ff00;
}

#terminal-input::placeholder {
  color: rgba(255,255,255,0.3);
}

#terminal-input:disabled {
  opacity: 0.5;
  cursor: wait;
}

#terminal-output {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  white-space: pre-wrap;
  word-wrap: break-word;
  max-height: 200px;
  overflow-y: auto;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
  transition: border-color 0.3s ease;
}

#terminal-output.loading {
  border-color: rgba(0,255,0,0.5);
  animation: terminalPulse 1.5s ease-in-out infinite;
}

@keyframes terminalPulse {
  0%, 100% { 
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), 0 0 0 rgba(0,255,0,0);
    border-color: rgba(0,255,0,0.3);
  }
  50% { 
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), 0 0 16px rgba(0,255,0,0.5), 0 0 24px rgba(0,255,0,0.3);
    border-color: rgba(0,255,0,0.7);
  }
}

#terminal-output:empty::before {
  content: 'Select a project with ❯ and run git commands (e.g., "git log --oneline -10")';
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

#terminal-output::-webkit-scrollbar {
  width: 6px;
}

#terminal-output::-webkit-scrollbar-track {
  background: transparent;
}

#terminal-output::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

/* Project Grid - Command Center Style */
#project-ticker {
  overflow-x: hidden;
  padding: 1rem 2rem 2rem 2rem;
}

#project-ticker::-webkit-scrollbar {
  width: 6px;
}

#project-ticker::-webkit-scrollbar-track {
  background: transparent;
}

#project-ticker::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

#project-ticker::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.3);
}

.project-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Section containers */
.projects-section,
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 280px));
  grid-auto-rows: minmax(min-content, max-content);
  align-items: start;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
  max-width: calc(5 * 280px + 4 * 2rem); /* 5 cards max per row */
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .projects-section,
  .services-section {
    max-width: calc(4 * 280px + 3 * 2rem);
  }
}

@media (max-width: 1100px) {
  .projects-section,
  .services-section {
    max-width: calc(3 * 280px + 2 * 2rem);
  }
}

@media (max-width: 900px) {
  #keep-header {
    padding: 1.5rem 1rem;
  }
  
  #project-ticker {
    padding: 0 1rem 2rem 1rem;
  }
  
  .projects-section,
  .services-section {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .project-card {
    width: 100%;
    height: auto;
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  #terminal {
    font-size: 12px;
  }
  
  #terminal-input {
    font-size: 12px;
  }
  
  #terminal-output {
    font-size: 11px;
    max-height: 200px;
  }
  
  .projects-section,
  .services-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  #project-detail {
    width: 100%;
    right: -100%;
  }
  
  #token-input {
    font-size: 18px;
    width: 240px;
  }
}

/* Section divider for services */
.section-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 0;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.divider-text {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Tier 3 Services (compact list) */
.tier3-services {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
}

.tier3-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  font-weight: 600;
}

.tier3-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.tier3-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tier3-item:hover {
  color: rgba(255,255,255,0.9);
}

.tier3-status {
  font-size: 8px;
  line-height: 1;
}

.tier3-status.live {
  color: rgba(0,255,0,0.6);
}

.tier3-status.paused {
  color: rgba(255,255,255,0.2);
}

.tier3-separator {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  margin: 0 0.2rem;
}

.project-card {
  width: 280px;
  height: 400px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.02);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  user-select: none;
  box-sizing: border-box;
  position: relative;
  will-change: transform;
  animation: fadeInUp 0.5s ease-out backwards;
}

/* Collapsed state */
.project-card.collapsed {
  height: auto;
  min-height: 70px;
  padding: 0.75rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.project-card.collapsed:hover {
  transform: translateY(-2px);
}

.project-card.collapsed .project-thumbnail,
.project-card.collapsed .project-status,
.project-card.collapsed .project-description,
.project-card.collapsed .project-meta,
.project-card.collapsed .card-menu,
.project-card.collapsed .external-link {
  display: none;
}

.project-card.collapsed .project-info {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  flex: 1;
}

.project-card.collapsed .project-name {
  font-size: 14px;
  margin: 0;
  width: 100%;
  gap: 0.25rem;
}

.project-card.collapsed .project-name span:first-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-card.collapsed .project-actions {
  margin: 0;
  gap: 0.5rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
}

.project-card.collapsed .vscode-link {
  padding: 0.35rem 0.6rem;
  font-size: 10px;
  white-space: nowrap;
}

.project-card.collapsed .external-link {
  padding: 0.35rem 0.75rem;
  font-size: 10px;
}

.project-card.collapsed .terminal-activate-btn {
  padding: 0.35rem 0.5rem;
  font-size: 14px;
}

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

.project-card:nth-child(1) { animation-delay: 0.05s; }
.project-card:nth-child(2) { animation-delay: 0.1s; }
.project-card:nth-child(3) { animation-delay: 0.15s; }
.project-card:nth-child(4) { animation-delay: 0.2s; }
.project-card:nth-child(5) { animation-delay: 0.25s; }
.project-card:nth-child(6) { animation-delay: 0.3s; }
.project-card:nth-child(7) { animation-delay: 0.35s; }
.project-card:nth-child(8) { animation-delay: 0.4s; }
.project-card:nth-child(9) { animation-delay: 0.45s; }
.project-card:nth-child(10) { animation-delay: 0.5s; }

.project-card:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
}

.project-card.active {
  border-color: #00ffff;
  background: rgba(0,255,255,0.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.project-card.dragging {
  opacity: 0.7;
  cursor: grabbing;
  transform: scale(0.98) rotate(2deg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  transition: none;
  will-change: transform;
}

.project-card.drag-over {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  transform: scale(1.02);
}

.project-thumbnail {
  width: 100%;
  height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.3);
}

.project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.project-name {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.collapse-toggle {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  min-height: 20px;
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.project-name:hover .collapse-toggle {
  color: rgba(255,255,255,0.7);
}

.project-card.collapsed .collapse-toggle {
  transform: rotate(180deg);
}

.project-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator.live {
  background: #00ff00;
  box-shadow: 0 0 8px #00ff00;
}

.status-indicator.paused {
  background: #ffaa00;
}

.status-indicator.local-only {
  background: #888888;
}

.project-description {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 60px;
}

.project-meta {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* Project actions container */
.project-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.vscode-link,
.external-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.vscode-link {
  border-color: rgba(0,255,255,0.4);
  color: #00ffff;
}

.vscode-link:hover {
  border-color: rgba(0,255,255,0.9);
  background: rgba(0,255,255,0.15);
  box-shadow: 0 0 12px rgba(0,255,255,0.4);
  transform: translateY(-1px);
}

.external-link:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.terminal-activate-btn {
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  font-family: 'Courier New', monospace;
  color: #00ff00;
  background: transparent;
  border: 2px solid rgba(0,255,0,0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.terminal-activate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,255,0,0.1);
  transition: left 0.3s ease;
}

.terminal-activate-btn:hover::before {
  left: 0;
}

.terminal-activate-btn:hover {
  border-color: rgba(0,255,0,0.9);
  background: rgba(0,255,0,0.15);
  box-shadow: 0 0 16px rgba(0,255,0,0.4);
  transform: translateY(-1px);
}

/* Project detail slide-in */
#detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#detail-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

#project-detail {
  position: fixed;
  top: 0;
  right: -600px;
  width: 600px;
  height: 100%;
  background: #0a0a0a;
  border-left: 2px solid rgba(255,255,255,0.2);
  z-index: 1000;
  overflow-y: auto;
  padding: 3rem;
  box-sizing: border-box;
  transition: right 0.3s ease;
}

#project-detail.open {
  right: 0;
}

.detail-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.detail-close:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.detail-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
}

.detail-title {
  font-size: 32px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.detail-live-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.detail-live-link:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.detail-content {
  line-height: 1.8;
}

.detail-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--text);
}

.detail-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--muted);
}

.detail-content p {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 15px;
}

.detail-content ul, .detail-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
  color: var(--muted);
}

.detail-content li {
  margin: 0.5rem 0;
}

.detail-content code {
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 13px;
}

.detail-content pre {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  overflow-x: auto;
  border-radius: 3px;
  margin: 1rem 0;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tech-pill {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  color: #00ffff;
  background: rgba(0,255,255,0.05);
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 3px;
  text-transform: lowercase;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Card menu (three dots) */
.card-menu {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
  z-index: 10;
}

.project-card:hover .card-menu {
  opacity: 1;
}

.card-menu:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.6);
}

.card-menu-dropdown {
  position: fixed;
  background: rgba(20,20,20,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.card-menu-dropdown .menu-item {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  border-radius: 2px;
  transition: background 0.2s;
}

.card-menu-dropdown .menu-item:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* Hidden items toggle */
.hidden-toggle {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.hidden-toggle .hidden-count {
  cursor: pointer;
  transition: color 0.2s;
}

.hidden-toggle .hidden-count:hover {
  color: rgba(255,255,255,0.6);
}

.hidden-items-list {
  margin-top: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 1rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hidden-section-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.hidden-section-header:first-child {
  margin-top: 0;
}

.hidden-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.hidden-item .unhide-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}

.hidden-item .unhide-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.05);
}
