* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	padding: 20px;
}
.container {
	max-width: 900px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	padding: 40px;
}
.header {
	text-align: center;
	margin-bottom: 40px;
}
h1 {
	font-size: 2.5em;
	color: #667eea;
	margin-bottom: 20px;
	font-weight: 700;
}
.search-form {
	display: flex;
	gap: 10px;
	max-width: 600px;
	margin: 0 auto 30px;
}
.search-input {
	flex: 1;
	padding: 14px 18px;
	font-size: 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.3s;
}
.search-input:focus {
	border-color: #667eea;
}
.search-button {
	padding: 14px 32px;
	font-size: 16px;
	background: #667eea;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s, transform 0.1s;
}
.search-button:hover {
	background: #5568d3;
	transform: translateY(-1px);
}
.search-button:active {
	transform: translateY(0);
}
.content {
	margin-top: 40px;
}
p {
	margin-bottom: 16px;
	color: #555;
}
a {
	color: #667eea;
	text-decoration: none;
	transition: color 0.2s;
}
a:hover {
	color: #5568d3;
	text-decoration: underline;
}
code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
	font-size: 0.9em;
	color: #e83e8c;
}
h2 {
	margin: 40px 0 20px;
	color: #333;
	font-size: 1.8em;
	border-bottom: 2px solid #667eea;
	padding-bottom: 10px;
}
.table-wrapper {
	overflow-x: auto;
	margin-top: 20px;
}
table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
th {
	background: #667eea;
	color: white;
	padding: 14px;
	text-align: left;
	font-weight: 600;
}
td {
	padding: 12px 14px;
	border-bottom: 1px solid #f0f0f0;
}
tr:last-child td {
	border-bottom: none;
}
tr:hover {
	background: #f8f9ff;
}
.bang-name {
	font-family: "SF Mono", Monaco, monospace;
	font-weight: 600;
	color: #667eea;
}
.protocol-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 0.85em;
	font-weight: 600;
}
.protocol-get {
	background: #e8f5e9;
	color: #2e7d32;
}
.protocol-post {
	background: #fff3e0;
	color: #e65100;
}
@media (max-width: 600px) {
	.container {
		padding: 20px;
	}
	h1 {
		font-size: 2em;
	}
	.search-form {
		flex-direction: column;
	}
}

