@import url("https://fonts.googleapis.com/css?family=Montserrat:600,400");
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
body {
	margin: 0;
	font-family: "Montserrat" !important;
	color: #e0e0e0;
	line-height: 1.6;
	background: #121212;
}
#dust {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}
.container {
	max-width: 1000px;
	margin: auto;
	padding: 20px;
}
.section {
	background-color: rgba(60, 60, 60, 0.75);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
}
.section h3, h2, h1 {
	margin-top: 0;
	border-bottom: 1px solid #444;
	padding-bottom: 5px;
	font-size: 1.5em;
	text-shadow:
		0 0 5px #ff9a67,
		0 0 10px #ff9a67,
		0 0 20px #ff9a67;
}
.line {
	border-bottom: 1px solid #444;
}
ul {
	padding-left: 20px;
}
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
}
.info-box {
	background-color: #121212;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #ccc;
}
footer {
	margin-top: -30px;
	text-align: center;
	padding: 15px;
	font-size: 0.9em;
	color: #888;
}
.highlight {
	color: #ff9a67;
	font-weight: bold;
}
a {
	color: #ff9a67;
	font-weight: bold;
}
a:link, a:visited, a:active {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h1.error {
	font-size: 2em;
}
.list-decimal {
	list-style-type: decimal;
}
.server-time {
	color: #888;
	text-align: right;
	font-weight: bold;
	font-size: 0.9em;
}
.server-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-bottom: 1px solid #444;
}
.server-info-header h1{
	margin: 0;
	border-bottom: none;
}
.discord-button {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #5865f2, #7289da);
	color: white;
	font-weight: bold;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 12px rgba(0,0,0,0.2);
	font-size: 1em;
	margin-top: 20px;
}
.discord-button .discord-icon {
	transition: transform 0.3s ease;
}
.discord-icon {
	margin-right: 10px;
	width: 30px;
	height: 30px;
}
.discord-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.3);
	background: linear-gradient(135deg, #7289da, #5865f2);
	text-decoration: none;
}
.discord-button:hover .discord-icon {
	transform: rotate(-15deg);
}
.discord-container {
	text-align: center;
	margin: -25px 0 15px 0;
}
.right-side {
	float: right;
}
.ONLINE {
	color: #00aeae;
}
.OFFLINE {
	color: #ae0000;
}
.tags {
	text-align: right;
	margin-top: 16px;
	font-weight: bold;
	font-size: 0.8em;
}
.tag {
	margin-left: 3px;
	background: #121212;
	padding: 4px 10px;
	border-radius: 8px;
	border: 1px solid #ccc;
}
.auto-refresh {
	color: #888;
	font-size: 0.9em;
	text-align: center;
}