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

:root {
	--lime: #b6ff00;
	--lime-dark: #8fc900;
	--bg: #080a07;
	--card: rgba(18, 22, 15, 0.82);
	--border: rgba(182, 255, 0, 0.18);
	--text: #f2f5ed;
	--muted: #899080;
}

body {
	min-height: 100vh;
	background: var(--bg);
	color: var(--text);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

.background {
	position: fixed;
	inset: 0;
	z-index: -1;

	background:
	radial-gradient(
		circle at 50% 35%,
		rgba(182, 255, 0, 0.12),
					transparent 32%
	),
	radial-gradient(
		circle at 10% 90%,
		rgba(182, 255, 0, 0.05),
					transparent 30%
	);

	pointer-events: none;
}

#topbar {
position: fixed !important;
top: 0 !important;
left: 0 !important;

width: 100% !important;
height: 72px !important;

display: flex !important;
align-items: center !important;

padding: 0 20px !important;
box-sizing: border-box !important;

background: #080a07 !important;

z-index: 999999 !important;
}

.logo {
	display: flex;
	align-items: center;
	gap: 11px;

	font-size: 19px;
	font-weight: 700;
	white-space: nowrap;
}

#browser-bar {
position: relative !important;

flex: 1 1 auto !important;

display: flex !important;
align-items: center !important;
gap: 6px !important;

margin: 0 !important;
padding: 0 !important;

z-index: 1000000 !important;
}

#browser-bar button:hover {
background: rgba(182, 255, 0, 0.12);
color: #b6ff00;
}

#url-form {
flex: 1;
}

#url-bar {
width: 100%;
height: 38px;

padding: 0 15px;

border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 10px;

outline: none;

background: rgba(255, 255, 255, 0.05);
color: #eee;

font-size: 14px;
}

#url-bar:focus {
border-color: rgba(182, 255, 0, 0.4);
}

#url-bar::placeholder {
color: #666;
}

.status {
	white-space: nowrap;
}

.logo {
	display: flex;
	align-items: center;
	gap: 11px;

	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.logo-icon {
	width: 32px;
	height: 32px;

	display: grid;
	place-items: center;

	border-radius: 9px;
	background: var(--lime);
	color: #0b0d08;

	font-weight: 900;
}

.status {
	display: flex;
	align-items: center;
	gap: 8px;

	color: var(--muted);
	font-size: 13px;
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 10px var(--lime);
}

main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;

	padding: 60px 20px;
}

.hero {
	width: min(760px, 100%);
	text-align: center;
}

.badge {
	display: inline-block;

	padding: 6px 12px;
	margin-bottom: 20px;

	border: 1px solid var(--border);
	border-radius: 999px;

	color: var(--lime);
	background: rgba(182, 255, 0, 0.06);

	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
}

h1 {
	font-size: clamp(46px, 7vw, 78px);
	line-height: 0.98;
	letter-spacing: -4px;
	font-weight: 800;
}

h1 span {
	color: var(--lime);
}

.subtitle {
	margin: 22px auto 38px;

	color: var(--muted);
	font-size: 17px;
}

.search-box {
	display: flex;
	align-items: center;

	width: 100%;
	height: 68px;

	padding: 7px;

	border: 1px solid rgba(182, 255, 0, 0.2);
	border-radius: 17px;

	background: var(--card);

	box-shadow:
	0 20px 60px rgba(0, 0, 0, 0.35),
	0 0 50px rgba(182, 255, 0, 0.04);

	backdrop-filter: blur(15px);

	transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box:focus-within {
	border-color: rgba(182, 255, 0, 0.55);

	box-shadow:
	0 20px 60px rgba(0, 0, 0, 0.35),
	0 0 35px rgba(182, 255, 0, 0.1);
}

.search-icon {
	padding-left: 17px;
	padding-right: 10px;

	color: var(--muted);
	font-size: 28px;
}

#sj-address {
flex: 1;

height: 100%;

border: none;
outline: none;

background: transparent;
color: var(--text);

font-size: 16px;
}

#sj-address::placeholder {
color: #60665a;
}

.search-box button {
	height: 52px;

	padding: 0 25px;

	border: none;
	border-radius: 12px;

	background: var(--lime);
	color: #0b0d08;

	font-weight: 800;
	font-size: 14px;

	cursor: pointer;

	transition: transform 0.15s, background 0.15s;
}

.search-box button:hover {
	background: #c7ff36;
	transform: translateY(-1px);
}

.search-box button:active {
	transform: translateY(1px);
}

.quick-links {
	display: flex;
	justify-content: center;
	gap: 9px;

	margin-top: 17px;
}

.quick-links button {
	padding: 8px 14px;

	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 9px;

	background: rgba(255, 255, 255, 0.025);
	color: #8e9488;

	font-size: 12px;

	cursor: pointer;
}

.quick-links button:hover {
	border-color: var(--border);
	color: var(--lime);
}

.error {
	margin-top: 20px;
	color: #ff7777;
	font-size: 13px;
}

.error pre {
	white-space: pre-wrap;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 12px 24px;
	box-sizing: border-box;

	background: rgba(8, 10, 7, 0.9);
	border-top: 1px solid rgba(182, 255, 0, 0.15);

	color: #777;
	font-size: 13px;

	z-index: 20;
}

.footer-left {
	display: flex;
	gap: 12px;
}

.footer-links {
	display: flex;
	gap: 18px;
}

.footer-links a {
	color: #b6ff00;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.footer-links a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

@media (max-width: 600px) {
	header {
		padding: 0 20px;
	}

	main {
		padding: 40px 16px;
	}

	h1 {
		letter-spacing: -2px;
	}

	.search-box {
		height: 60px;
	}

	.search-box button {
		height: 46px;
		padding: 0 18px;
	}

	footer {
		padding: 20px;
	}

	.quick-links {
		flex-wrap: wrap;
	}
}
#sj-frame {
position: fixed !important;

top: 72px !important;
left: 0 !important;

width: 100vw !important;
height: calc(100vh - 72px) !important;

border: none !important;

z-index: 1 !important;
}

#browser-bar button {
width: 38px;
height: 38px;

border: none;
border-radius: 9px;

background: rgba(255, 255, 255, 0.05);
color: #aaa;

font-size: 20px;

cursor: pointer;
}

#browser-bar {
flex: 1;
display: flex;
align-items: center;
gap: 6px;
margin: 0 20px;
}

#url-form {
flex: 1;
}

#url-bar {
width: 100%;
height: 38px;
}
padding: 0 15px;

border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 10px;

outline: none;

background: rgba(255, 255, 255, 0.05);
color: #eee;

font-size: 14px;
}

#url-bar:focus {
border-color: rgba(182, 255, 0, 0.4);
}

#url-bar::placeholder {
color: #666;
}

#sj-frame {
position: fixed;

top: 58px;
left: 0;

width: 100vw;
height: calc(100vh - 58px);

border: none;

background: #000;

z-index: 100;
}
#lime-logo {
display: flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: flex-start !important;
gap: 10px !important;

flex: 0 0 auto !important;

width: auto !important;
height: 40px !important;

margin: 0 !important;
padding: 0 !important;

color: #b6ff00 !important;

font-family: Arial, sans-serif !important;
font-size: 19px !important;
font-weight: 700 !important;
line-height: 1 !important;

white-space: nowrap !important;
}

#lime-logo .logo-icon {
display: flex !important;
align-items: center !important;
justify-content: center !important;

width: 36px !important;
height: 36px !important;

flex: 0 0 36px !important;

margin: 0 !important;
padding: 0 !important;

border-radius: 9px !important;

background: #b6ff00 !important;
color: #080a07 !important;

font-size: 20px !important;
font-weight: 900 !important;
line-height: 1 !important;
}
