@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap");
:root {
	--yellow: #f5c400;
	--yellow-dim: rgba(245, 196, 0, 0.12);
	--black: #080808;
	--surface: #111111;
	--text: #ffffff;
	--text-dim: rgba(255, 255, 255, 0.38);
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cline x1='12' y1='2' x2='12' y2='22' stroke='red' stroke-width='2'/%3E%3Cline x1='2' y1='12' x2='22' y2='12' stroke='red' stroke-width='2'/%3E%3C/svg%3E") 12 12, crosshair;
}
body {
	font-family: "Inter", Arial, sans-serif;
	background: var(--black);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	color: var(--text);
}
.bg-grid {
	position: fixed;
	inset: 0;
	background-image: linear-gradient(rgba(245, 196, 0, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 196, 0, 0.07) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: 0;
}
.flex-center {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 1;
}
.header-center {
	align-items: center;
	flex-direction: column;
	margin-top: 10%;
	gap: 6px;
}
.bolt {
	font-size: 56px;
	line-height: 1;
	margin-bottom: 6px;
}
.logo-wrapper h1 {
	font-family: "Bebas Neue", sans-serif;
	font-size: 72px;
	letter-spacing: 7px;
	color: var(--yellow);
	line-height: 1;
}
.tagline {
	font-size: 11px;
	color: var(--text-dim);
	letter-spacing: 3.5px;
	text-transform: uppercase;
	margin-top: 6px;
	margin-bottom: 8px;
}
.search-wrap {
	position: relative;
	margin-top: 28px;
	width: 480px;
	max-width: 90vw;
}
.search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	pointer-events: none;
	opacity: 0.55;
}
#sj-address {
	width: 100%;
	background: var(--surface);
	font-family: "Inter", sans-serif;
	font-size: 15px;
	padding: 16px 20px 16px 46px;
	border: 1.5px solid rgba(245, 196, 0, 0.2);
	color: var(--text);
	border-radius: 12px;
	outline: none;
	transition: border-color 0.2s;
}
#sj-address::placeholder {
	color: var(--text-dim);
}
#sj-address:focus {
	border-color: var(--yellow);
}
.desc {
	position: relative;
	z-index: 1;
	justify-content: center;
}
.left-margin {
	margin: 8px 16px;
}
#sj-error {
	color: #ff6060;
	white-space: pre-wrap;
	font-size: 13px;
}
#sj-error-code {
	font-size: 11px;
	color: var(--text-dim);
	font-family: "Courier New", monospace;
}
footer {
	position: relative;
	z-index: 1;
	margin: auto 5vw 24px;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-top: 1px solid rgba(245, 196, 0, 0.1);
	padding-top: 16px;
}
footer > div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}
footer a,
footer span {
	padding: 4px 12px;
	font-size: 13px;
	color: var(--text-dim);
	text-decoration: none;
	transition: color 0.15s;
	letter-spacing: 0.5px;
}
footer a:hover {
	color: var(--yellow);
}
footer span {
	font-size: 12px;
}
#sj-frame {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	z-index: 999;
}
