
:root { --bg: #0a0a0f; --card: #12121a; --accent: #6c5ce7; --text: #e0e0e0; --muted: #888; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.container { max-width: 720px; width: 90%; }
h1 { font-size: 2.5rem; margin-bottom: .5rem; background: linear-gradient(135deg, var(--accent), #a29bfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subtitle { color: var(--muted); margin-bottom: 2rem; font-size: 1.1rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.card { background: var(--card); border: 1px solid #1e1e2e; border-radius: 12px; padding: 1.5rem; transition: transform .2s, border-color .2s; }
.card:hover { transform: translateY(-2px); border-color: var(--accent); }
.card h3 { color: var(--accent); margin-bottom: .5rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.card p { font-size: 1.4rem; font-weight: 600; }
.card .unit { font-size: .8rem; color: var(--muted); font-weight: 400; }
.endpoints { background: var(--card); border: 1px solid #1e1e2e; border-radius: 12px; padding: 1.5rem; }
.endpoints h2 { font-size: 1rem; color: var(--accent); margin-bottom: 1rem; }
.endpoint { display: flex; align-items: center; gap: .75rem; padding: .5rem 0; border-bottom: 1px solid #1e1e2e; }
.endpoint:last-child { border-bottom: none; }
.method { background: var(--accent); color: white; padding: .2rem .6rem; border-radius: 4px; font-size: .75rem; font-weight: 700; }
.path { font-family: 'Fira Code', monospace; font-size: .9rem; }
.desc { color: var(--muted); font-size: .85rem; margin-left: auto; }
footer { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .85rem; }
footer a { color: var(--accent); text-decoration: none; }
