@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');

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

body {
  font-family: 'Oxygen', sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  width: 80vw;
  margin: 0 auto;
  padding: 80px 0;
}

@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 80px 16px;
  }
}

.logo {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.subtitle {
  color: #666;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 48px;
}

h2 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  margin-top: 40px;
}

p {
  color: #444;
  margin-bottom: 16px;
}

.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 12px;
}

.endpoint {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.method {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f0f0f0;
  color: #333;
  flex-shrink: 0;
}

.method.post {
  background: #e8f5e9;
  color: #2e7d32;
}

.path {
  font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.endpoint-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding-left: 60px;
}

.copy-block {
  position: relative;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  overflow-x: auto;
}

.copy-block code {
  font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.85rem;
  color: #e0e0e0;
  white-space: pre;
  line-height: 1.7;
}

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #aaa;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.copy-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.copy-btn.copied {
  color: #4caf50;
  border-color: #4caf50;
}

.tools-list {
  list-style: none;
  padding: 0;
}

.tools-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.tools-list li:last-child {
  border-bottom: none;
}

.tool-name {
  font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tool-desc {
  color: #666;
  font-size: 0.9rem;
}

footer {
  margin-top: auto;
  max-width: 800px;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 0;
  border-top: 1px solid #eee;
  color: #bbb;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  footer {
    width: 100%;
    padding: 24px 16px;
  }
}
