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

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #0d1117;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.home-container {
  background: #161b22;
  padding: 40px 48px;
  border-radius: 12px;
  border: 1px solid #30363d;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(88, 166, 255, 0.05);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.timely-home-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.95;
}

.home-container h1 {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.home-container h1 span {
  color: #58a6ff;
}

.tagline {
  font-size: 13px;
  color: #8b949e;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
}

.tagline::before {
  content: '// ';
  color: #3fb950;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-btn {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #58a6ff;
  border: 1px solid #30363d;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  text-align: left;
  letter-spacing: 0.2px;
}

.home-btn::before {
  content: '> ';
  color: #3fb950;
  font-weight: 700;
}

.home-btn:hover {
  background: rgba(88, 166, 255, 0.08);
  border-color: #58a6ff;
  box-shadow: 0 0 12px rgba(88, 166, 255, 0.15);
  color: #79c0ff;
}

.home-btn:active {
  background: rgba(88, 166, 255, 0.12);
}
