body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-image: url("images/back.gif");
	background-repeat: repeat;
	background-size: auto;
	background-color: #000;
	font-family: Verdana, sans-serif;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ticker-wrap {
	background: #000080;
	overflow: hidden;
	height: 40px;
	line-height: 40px;
}

.ticker {
	display: inline-block;
	padding-left: 100%;
	white-space: nowrap;
	animation: ticker 15s linear infinite;
}

.ticker img {
	height: 40px;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.page-wrapper {
	display: grid;
	grid-template-columns: 1fr 220px minmax(500px, 900px) 1fr;
	gap: 20px;
	padding: 20px 0;
	flex: 1;
}

.left-gap,
.right-gap {
	background: transparent;
}

.retro-sidebar {
	background: linear-gradient(to bottom, #ccc, #aaa);
	border: 2px solid #999;
	padding: 15px;
	font-size: 14px;
	box-shadow: inset 0 0 5px #888;
}

.retro-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.retro-sidebar li {
	margin: 15px 0;
	display: flex;
	align-items: center;
}

.retro-sidebar img {
	width: 32px;
	height: 32px;
	margin-right: 8px;
	transition: transform 0.2s ease-in-out;
}

.retro-sidebar img:hover {
	transform: scale(1.6);
	filter: drop-shadow(2px 2px 2px #666);
}

.retro-sidebar a {
	text-decoration: none;
	color: #000;
	font-weight: bold;
}

.main-content {
	background: white;
	padding: 20px;
	border: 2px solid #ccc;
	box-shadow: 2px 2px 10px #aaa;
}

.retro-footer {
	text-align: center;
	padding: 10px;
	background: #dcdcdc;
	border-top: 2px solid #999;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.retro-footer img {
	height: 31px;
	margin: 0 5px;
}

.retro-sidebar a.nav-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	transition: transform 0.2s ease-in-out;
}

.retro-sidebar a.nav-link:hover {
	transform: scale(1.08);
	color: #0033cc;
}

.retro-sidebar a.nav-link img {
	width: 32px;
	height: 32px;
	margin-right: 8px;
	transition: transform 0.2s ease-in-out;
}

.retro-sidebar a.nav-link:hover img {
	transform: scale(1.6);
	filter: drop-shadow(2px 2px 2px #666);
}

.retro-sidebar a.nav-link span {
	transition: transform 0.2s ease-in-out;
}

.retro-sidebar a.nav-link:hover span {
	transform: scale(1.2);
}

.retro-header {
	background: #000;
	color: #00ffcc;
	text-align: center;
	font-family: "Courier New", monospace;
	font-size: 16px;
	padding: 10px 0;
	letter-spacing: 3px;
	border-bottom: 3px double #00ffcc;
}
