body, h1, h2, h3, h4, h5, h6, p, a, li, ul, ol, span, div, input, button {
  font-family: 'Inter', Helvetica, Arial, system-ui, sans-serif !important;
  color: #18181b !important;
}
body {
  background: #fff !important;
  color: #18181b !important;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.header-container {
  background: #fff !important;
}
header a, header button, header svg, header span {
  color: #18181b !important;
}
footer {
  color: #555 !important;
}
.prose, .prose-lg, .prose * {
  color: #18181b !important;
}
.highlight-tm {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  background: #f3f4f6 !important;
  color: #18181b !important;
  border-radius: 0.25rem;
  padding: 0.1em 0.3em;
  font-weight: normal !important;
  box-shadow: none !important;
}

.logo {
  transition: all 0.3s ease;
  height: 32px;
  width: auto;
  display: block;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-container {
  width: auto;
  display: flex;
  align-items: center;
}

.logo path {
  fill: none;
  stroke: #4B91F1;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.logo text {
  fill: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.accent-bg { 
  background-color: #e8e6e1; 
}

.hero-bg {
  background-color: transparent;
  color: #f3f4f6; /* Tailwind gray-100 */
}

.button-main {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-main:hover {
  box-shadow: 0 4px 14px rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}

.highlight {
  color: #60a5fa;
  font-weight: bold;
}

.browser-frame {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.browser-header {
  background: #f1f5f9;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

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

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.browser-content {
  padding: 20px;
}

.prompt-box {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}

.prompt-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'Inter', monospace;
  font-size: 14px;
  resize: none;
  color: #111827;
  outline: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.tech-logo {
  height: 30px;
  opacity: 0.7;
}
