/* Hide DLC buttons temporarily */
#menu {
    display: none !important;
}

/* Tooltip content */
.tooltipster-content span {
	display: block;
}

.tooltipster-content .title {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
	color: #fff;
}

.tooltipster-content .unlockedby {
	font-size: 12px;
	color: #aaa;
}


/* Global styles */
body {
	background: radial-gradient(ellipse at top, #111 0%, #000 100%);
	font-family: 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
	margin: 0;
	padding: 0;
}

/* Header */
h1 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 30px;
	font-size: 22px;
	letter-spacing: 1px;
	color: #fff;
}

/* Subheading */
h2 {
	font-size: 14px;
	margin: 10px 0 20px;
	color: #ddd;
}

/* Achievement container */
#achievements {
	background: rgba(32, 32, 32, 0.6);
	backdrop-filter: blur(8px);
	border: 1px solid #444;
	border-radius: 8px;
	padding: 25px;
	width: 960px;
	min-height: 160px;
	margin: 140px auto 40px auto;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
	position: relative;
    text-align: center;
}

#achievements a {
    display: inline-block;
    margin: 4px;
}

/* Achievement images */
#achievements a img {
    width: 64px;
    height: 64px;
    margin: 2px;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
	text-align: center;
	display: inline-block;
}

#achievements a img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#achievements a {
    display: inline-block;
	text-align: center;
}

#achievements h2 {
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    color: #ccc;
}

/* Login block */
#login {
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Input */
#steamIdInput {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid #555;
	border-radius: 4px;
	padding: 5px 10px;
	color: #fff;
	font-weight: 600;
	width: 180px;
	transition: border 0.2s ease;
}

#steamIdInput:focus {
	outline: none;
	border-color: #88f;
}

/* Steam login image */
#steamlogin input[type="image"] {
	cursor: pointer;
	transition: transform 0.2s ease;
}

#steamlogin input[type="image"]:hover {
	transform: scale(1.05);
}

/* Mode menu */
ul#modes {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

ul#modes li {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid #333;
	color: #fff;
	padding: 6px 12px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease, border 0.3s ease;
}

ul#modes li:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #666;
}

ul#modes li.active {
	background-color: rgba(0, 255, 100, 0.2);
	border-color: #0f5;
}

/* Help text */
#help {
	display: none;
	color: #ff0;
	font-size: 13px;
	text-align: center;
	margin-top: 10px;
}

#help a {
	color: #ff0;
	text-decoration: underline;
}

/* Utility */
.disabled {
	display: none !important;
}

