/* ==UserStyle==
@name         SteamStat.us - Sunset Theme
@version      20241115.16.04
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  SteamStat.us - Bright and Vibrant Style
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       nick2bad4u
@license      UnLicense
@downloadURL none
==/UserStyle== */
@document domain("steamstat.us") {
	.title {
		margin: 10px 0;
		background: linear-gradient(
			145deg,
			#ff7f50,
			#00ffff,
			#ffd700
		);
		background-clip: text;
		color: #fff;
		font-weight: 300;
		font-size: 2.6em;
		/* Bright Gradient Title */
		text-align: center;
		text-shadow: 2px 2px 8px rgb(0 0 0 / 80%);
		-webkit-text-fill-color: transparent;
	}

	a {
		/* Vibrant Links */
		color: #00ffff;
		font-weight: 700;
		text-decoration: none;
		text-shadow: 1px 1px 4px rgb(0 0 0 / 60%);
	}

	a:hover {
		color: #ffd700;
		text-decoration: underline;
	}

	.pull-right,
	.service .status {
		float: right;
		text-align: right;
	}

	.good {
		/* Bright Lime Green */
		color: #32cd32;
		text-shadow: 1px 1px 5px rgb(0 0 0 / 90%);
	}

	.minor {
		/* Electric Purple */
		color: #ba55d3;
		font-weight: 700;
		text-shadow: 1px 1px 5px rgb(0 0 0 / 90%);
	}

	.major {
		/* Bright Gold */
		color: #ffd700;
		font-weight: 700;
		text-shadow: 1px 1px 5px rgb(0 0 0 / 90%);
	}

	#js-refresh {
		/* Refresh Indicator */
		color: #ff4500;
		font-weight: bolder;
		text-shadow: 0 0 8px rgb(255 69 0 / 80%);
	}

	.services,
	#psa,
	noscript {
		position: relative;
		box-shadow: 0 4px 12px rgb(0 0 0 / 60%);
		border: 2px solid #ffd700;
		border-radius: 6px;
		background: linear-gradient(
			145deg,
			#ff4500,
			#1e90ff
		);
		color: #ffffff;
		font-size: 1em;
		line-height: 1.5;
		text-shadow: 0 0 6px rgb(0 0 0 / 80%);
	}

	body {
		margin: 0;
		background: linear-gradient(
			145deg,
			#ff7f50,
			#1e90ff,
			#ffd700
		);
		color: #ffffff;
		font-weight: 300;
		font-size: 16px;
		font-family: Roboto, Arial, sans-serif;
		text-shadow: 1px 1px 4px rgb(0 0 0 / 80%);
	}

	[data-tooltip]::before {
		/* Tooltip Box */
		visibility: hidden;
		opacity: 0%;
		overflow: hidden;
		content: attr(data-tooltip);
		font-size: 0.9em;
		white-space: pre;
		word-wrap: break-word;
		position: absolute;
		top: 0;
		left: 2%;
		z-index: 1;
		transition:
			visibility 0s,
			opacity 0.3s ease-in-out;
		border-radius: 6px;
		background: linear-gradient(
			145deg,
			#ffd700,
			#ba55d3,
			#1e90ff
		);
		padding: 8px;
		width: 96%;
		color: #ffffff;
		font-style: italic;
		font-weight: 300;
		text-align: left;
		text-shadow: 1px 1px 5px rgb(0 0 0 / 80%);
	}

	[data-tooltip]:hover::before {
		visibility: visible;
		opacity: 100%;
	}
}
