body {
    background: #0D0D12;
    color: #F5F5F5;
}

.logo {
    text-decoration: none;
    color: #FFFDE4 ;
    font-weight: 500;
    font-size: 1.3rem;
}

.hero {
    height: 150px;
    width: 95%;
    margin: 55px auto 0;
    box-sizing: border-box;

    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    color: #FFFDE4 ;
}

.hero .label {
  font-size: 0.7rem;
  color: #FFFDE4;
  letter-spacing: 0.15rem;
}

.hero .description {
  font-size: 1rem;
  color: #FFFDE4;
  max-width: 500px;
  line-height: 1.6;
}

.discovery {
  width: 95%;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 25px;
  box-sizing: border-box;

  border: 1px solid #2A2A30;
  border-radius: 6px;
}

.discovery-header {
  display: flex;
  justify-content: space-between;

  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  color: #FFFDE4
}

.type {
  font-size: 0.65rem;
  letter-spacing: 0.15rem;
  color: #77777F;
  margin-top: 40px;
}

.footer {
  color: #FFFDE4;
}

nav {
  display: inline-flex;
  gap: 20px;
  border: 1px solid #2A2A30;
  padding: 8px 12px;
  border-radius: 4px;
}

nav a {
  text-decoration: none;
  color: #FFFDE4;
  transition: transform 0.2s ease;
  position: relative;
}

nav a::after { 
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #FFFDE4;
    transition: width 0.7s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    transform: scale(1.05);
}

.content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #FFFDE4;
  max-width: 700px;
}

.explanation {
  max-width: 650px;
  color: #A0A0A8;
  line-height: 1.6;
}

kdb {
  border: 1px solid #2A2A30;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
}

.command {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 650px;
  margin-top: 25px;

  padding: 14px 16px;

  border: 1px solid #2A2A30;
  border-radius: 4px;
  background: #111117;
}

.command code {
  color: #FFFDE4;
  font-family: monospace;
}

.command button {
  background: none;
  border: none;
  color: #77777F;
  cursor: pointer;
}

.command button:hover {
  color: #FFFDE4;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  margin-top: 30px;
  padding-top: 20px;

  border-top: 1px solid #1F1F25;
}

.actions button {
  background: none;
  border: none;
  color: #77777F;
  cursor: pointer;
  font-size: 0.8rem;
}

.actions button:hover {
  color: #FFFDE4;
}

.saved {
  width: 95%;
  max-width: 900px;
  margin: 20px auto 80px;
}

.saved-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 15px;

  border-bottom: 1px solid #2A2A30;

  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  color: #FFFDE4;
}

.saved-count {
  color: #77777F;
  padding: 28px 0;
  border-bottom: 1px solid #1F1F25;
  transition: padding-left 0.2s ease;
}

.saved-item-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  color: #77777F;
}

.saved-item h2 {
  max-width: 700px;
  margin: 18px 0 12px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.35;
  color: #FFFDE4;
}

.saved-item p {
  max-width: 650px;
  margin: 0;
  color: #A0A0A8;
  line-height: 1.6;
}

.saved-command {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 650px;
  margin-top: 20px;
  padding: 13px 15px;
  border: 1px solid #2A2A30;
  border-radius: 4px;
  background: #111117;
  transition: border-color 0.2s ease;
}

.saved-command:hover {
  border-color: #44444D;
}

.saved-command code {
  color: #FFFDE4;
  font-family: monospace;
}

.saved-command button,
.remove-button {
  background: none;
  border: none;
  color: #77777F;
  cursor: pointer;
  transition: color 0.2s ease;
}

.remove-button {
  margin-top: 15px;
  font-size: 0.75rem;
}

.empty {
  padding: 50px 0;
  color: #77777F;
  font-size: 0.85rem;
  letter-spacing: 0.03rem;
}