:root {
	--csgo-bg: #0a0c0e;
	--csgo-primary: #00ff88;
	--csgo-secondary: #2dff9c;
	--csgo-accent: #ff4444;
	--csgo-text: rgba(225, 238, 246, 0.95);
	--csgo-border: rgba(0, 255, 136, 0.2);
	--csgo-overlay: linear-gradient( 160deg, rgba(10, 12, 14, 0.95) 40%, rgba(13, 16, 19, 0.95) );
	--csgo-font: "Consolas", "Lucida Console", monospace;
	--aero-primary: #92caf4;
	--aero-secondary: #6ea9e0;
	--aero-accent: #3a7ca5;
	--aero-text: #2c3e50;
	--aero-light: #e6f2ff;
	--aero-border: rgba(122, 184, 230, 0.6);
	--aero-shadow: rgba(58, 124, 165, 0.2);
	--aero-glass: rgba(255, 255, 255, 0.85);
	--aero-gradient: linear-gradient(135deg, #e6f2ff, #b0d4f0, #92caf4, #6ea9e0);
	--aero-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@font-face {
	font-family: "Segoe UI";
  src: local("Segoe UI");
  font-display: swap;
}

body {
	transition: background 0.3s ease, font-family 0.3s ease;
}

.csgo-theme {
	background: radial-gradient( ellipse at center, #0a0c0e 0%, #000000 100% ) !important;
	font-family: var(--csgo-font) !important;
	color: var(--csgo-text);
	position: relative;
	overflow: hidden;
}

.csgo-theme * {
	font-family: var(--csgo-font) !important;
}

.csgo-theme .rounded-2xl {
	border: 1px solid rgba(0, 255, 136, 0.3) !important;
	background: linear-gradient( 145deg, rgba(10, 12, 14, 0.95) 0%, rgba(13, 16, 19, 0.95) 100% ) !important;
	box-shadow: 0 0 35px rgba(0, 255, 136, 0.1) !important;
}

.csgo-theme .bg-[#17181a] {
	background: rgba(10, 12, 14, 0.7) !important;
	border: 1px solid rgba(0, 255, 136, 0.1) !important;
}

.csgo-theme .cyber-container {
	border: 1px solid var(--csgo-border);
	background: var(--csgo-overlay);
	backdrop-filter: blur(6px);
	box-shadow: 0 0 35px rgba(0, 255, 136, 0.08);
	margin: 20px;
	position: relative;
	border-radius: 4px;
	min-height: 120px;
	padding: 1.5rem;
	margin-top: 1.5rem;
}

.activity-item {
	padding: 4px 0;
	border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.csgo-theme .cyber-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient( 90deg, transparent, rgba(0, 255, 136, 0.05), transparent );
	animation: cyberScan 3.5s infinite;
}

@keyframes cyberScan {
	0% {
		left: -100%;
	}

	100% {
		left: 200%;
	}
}

.csgo-theme .cyber-button {
	padding: 12px 24px;
	margin: 8px;
	background: linear-gradient( 145deg, rgba(13, 16, 19, 0.8) 30%, rgba(10, 12, 14, 0.9) 70% );
	border: 1px solid var(--csgo-border);
	color: var(--csgo-primary);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
}

#discord-status[data-loading="true"] .hack-status {
	animation: pulseStatus 1.5s infinite;
}

#discord-status {
	color: #ffffff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}

#discord-container {
	backdrop-filter: blur(8px);
	position: relative;
	z-index: 10;
}

#discord-status.offline {
	background: linear-gradient(90deg, #ff4e50, #f9d423);
}

.csgo-theme .cyber-button::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient( transparent, var(--csgo-secondary), transparent 30% );
	animation: cyberSpin 3s linear infinite;
}

@keyframes cyberSpin {
	100% {
		transform: rotate(360deg);
	}
}

.csgo-theme .cyber-button:hover {
	background: linear-gradient( 145deg, rgba(13, 16, 19, 0.9) 10%, rgba(10, 12, 14, 0.95) 90% );
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15), 0 0 12px rgba(45, 255, 156, 0.1);
}

.csgo-theme .status-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 8px;
}

.csgo-theme .status-online {
	background: var(--csgo-secondary);
}

.csgo-theme .status-idle {
	background: #faa81a;
}

.csgo-theme .status-dnd {
	background: var(--csgo-accent);
}

.csgo-theme .status-offline {
	background: #747f8d;
}

.csgo-theme .spotify-player {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	background: rgba(10, 12, 14, 0.6);
	border: 1px solid var(--csgo-border);
	margin-top: 1rem;
}

.csgo-theme .album-art {
	width: 60px;
	height: 60px;
	border: 2px solid var(--csgo-primary);
}

.csgo-theme .spotify-info {
	flex-grow: 1;
}

.csgo-theme .progress-bar {
	height: 4px;
	background: rgba(0, 255, 136, 0.1);
	margin: 0.5rem 0;
	position: relative;
}

.progress-fill {
	transition: width 0.5s linear;
}

.csgo-theme .activity-icon {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	border-radius: 4px;
}

.csgo-theme .platform-icons {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-left: auto;
}

.csgo-theme .platform-icon {
	width: 20px;
	height: 20px;
	filter: brightness(0.8);
}

.csgo-theme .cyber-button::after {
	content: "";
	position: absolute;
	inset: 1px;
	background: linear-gradient( 145deg, rgba(13, 16, 19, 0.7), rgba(10, 12, 14, 0.85) );
}

.spotify-player {
	width: 100% !important;
	padding: 1.5rem !important;
	gap: 1.5rem !important;
	display: flex;
	align-items: center;
	background: rgba(10, 12, 14, 0.6) !important;
	border: 1px solid var(--csgo-border) !important;
	border-radius: 8px !important;
	margin-top: 1rem !important;
}

.album-art {
	width: 100px !important;
	height: 100px !important;
	border: 2px solid var(--csgo-primary) !important;
	border-radius: 8px !important;
}

.spotify-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem !important;
}

.spotify-info .font-medium {
	font-size: 1.25rem !important;
	font-weight: 600 !important;
}

.spotify-info .text-sm {
	font-size: 1rem !important;
}

.progress-bar {
	width: 100% !important;
	height: 6px !important;
	background: rgba(0, 255, 136, 0.1) !important;
	border-radius: 3px !important;
	margin: 0.5rem 0 !important;
}

.progress-fill {
	height: 100% !important;
	background: var(--csgo-primary) !important;
	border-radius: 3px !important;
}

.spotify-info .text-sm:last-child {
	font-size: 0.9rem !important;
	color: rgba(255, 255, 255, 0.7) !important;
}

.csgo-theme .cyber-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: rgba(10, 12, 14, 0.6);
	position: relative;
}

.csgo-theme .cyber-table th {
	background: linear-gradient( 90deg, rgba(0, 255, 136, 0.1) 0%, rgba(10, 12, 14, 0.4) 50%, rgba(0, 255, 136, 0.1) 100% );
	padding: 12px;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
	border: 1px solid var(--csgo-border);
}

.csgo-theme .cyber-table td {
	padding: 10px 15px;
	border: 1px solid rgba(0, 255, 136, 0.1);
	font-size: 0.8rem;
	position: relative;
}

.csgo-theme .cyber-table tr:hover td {
	background: rgba(0, 255, 136, 0.03);
	text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.csgo-theme .hack-status {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background: #ff4444;
	box-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
	transform: rotate(45deg);
	margin-right: 12px;
}

.csgo-theme .hack-status.active {
	background: var(--csgo-secondary);
	box-shadow: 0 0 12px rgba(45, 255, 156, 0.6);
	animation: pulseStatus 1.5s infinite;
}

@keyframes pulseStatus {
	0% {
		opacity: 0.8;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.8;
	}
}

@media (max-width: 640px) {
	.spotify-player {
		flex-direction: column;
		text-align: center;
	}

	.album-art {
		width: 100px;
		height: 100px;
	}
}

.csgo-theme::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient( 0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px );
	animation: glitchScan 6s linear infinite;
	pointer-events: none;
	z-index: 999;
}

.aero-theme {
	background: var(--aero-gradient);
	background-size: 400% 400%;
	font-family: var(--aero-font);
	color: var(--aero-text);
	animation: gradientBG 15s ease infinite;
	position: relative;
	overflow-x: hidden;
}

@media (max-width: 768px) {
	.aero-theme .card {
		margin: 10px;
		padding: 15px;
	}

	.aero-theme .button {
		padding: 8px 16px;
		font-size: 0.9rem;
	}

	.aero-cloud {
		display: none;
	}
}

.aero-theme * {
	font-family: var(--aero-font) !important;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.aero-theme .music-toggle, .aero-theme .project-button, .aero-theme .checkmate-button, .aero-theme .nohook-button, .aero-theme .minigame-button {
	position: relative;
	padding: 12px 24px;
	background: linear-gradient(145deg, #92caf4, #6ea9e0);
	color: white;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px var(--aero-shadow), inset 0 -2px 4px rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

.aero-theme .music-toggle:hover, .aero-theme .project-button:hover, .aero-theme .checkmate-button:hover, .aero-theme .nohook-button:hover, .aero-theme .minigame-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 8px var(--aero-shadow), inset 0 -3px 6px rgba(255, 255, 255, 0.3);
}

.aero-theme .music-toggle::before, .aero-theme .project-button::before, .aero-theme .nohook-button::before, .aero-theme .checkmate-button::before, .aero-theme .minigame-button::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient( circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70% );
	opacity: 0;
	transition: opacity 0.3s ease;
}

.aero-theme .music-toggle:hover::before, .aero-theme .project-button:hover::before, .aero-theme .nohook-button:hover::before, .aero-theme .checkmate-button:hover::before, .aero-theme .minigame-button:hover::before {
	opacity: 1;
}

.aero-theme::before, .aero-theme::after {
	content: "";
	position: fixed;
	width: 200px;
	height: 80px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50px;
	filter: blur(15px);
	z-index: -1;
}

.aero-theme::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	z-index: -1;
}

.aero-theme::after {
	top: 70%;
	right: -100px;
	animation: cloudMove2 30s linear infinite;
	width: 250px;
}

@keyframes cloudFloat {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(100vw + 300px));
	}
}

.aero-cloud {
	position: fixed;
	background: var(--aero-glass);
	border-radius: 50%;
	filter: blur(20px);
	opacity: 0.7;
	z-index: -1;
}

.aero-cloud-1 {
	width: 300px;
	height: 120px;
	top: 10%;
	left: -150px;
	animation: cloudFloat 30s linear infinite;
}

.aero-cloud-2 {
	width: 250px;
	height: 100px;
	top: 60%;
	right: -125px;
	animation: cloudFloat 25s linear infinite reverse;
}

.aero-theme .card {
	background: var(--aero-glass);
	border: 1px solid var(--aero-border);
	border-radius: 12px;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 12px var(--aero-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aero-theme .card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px var(--aero-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.aero-theme .button {
	background: linear-gradient( 145deg, var(--aero-primary), var(--aero-secondary) );
	color: white;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 6px var(--aero-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.aero-theme .button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px var(--aero-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.aero-theme .button::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient( circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 60% );
	opacity: 0;
	transition: opacity 0.3s ease;
}

.aero-theme .button:hover::before {
	opacity: 1;
}

.aero-theme .nav-item {
	background: var(--aero-glass);
	border: 1px solid var(--aero-border);
	border-radius: 6px;
	padding: 8px 16px;
	color: var(--aero-text);
	font-weight: 500;
	transition: all 0.2s ease;
}

.aero-theme .nav-item:hover {
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-1px);
}

.aero-theme .progress-bar {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	overflow: hidden;
	height: 6px;
}

.aero-theme .progress-fill {
	background: linear-gradient( 90deg, var(--aero-primary), var(--aero-secondary) );
	height: 100%;
	transition: width 0.3s ease;
}

@keyframes cloudMove1 {
	0% {
		left: -100px;
	}

	100% {
		left: calc(100% + 100px);
	}
}

@keyframes cloudMove2 {
	0% {
		right: -100px;
	}

	100% {
		right: calc(100% + 100px);
	}
}

.aero-theme .skill-badge {
	background: linear-gradient(145deg, #92caf4, #6ea9e0) !important;
	color: white !important;
	border: 1px solid var(--aero-border);
	transition: transform 0.2s ease;
}

.aero-theme .skill-badge:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 6px var(--aero-shadow);
}

.theme-toggle {
	padding: 8px 16px;
	background: linear-gradient( 180deg, rgba(255, 255, 255, 0.9), rgba(230, 242, 255, 0.9) );
	border: 1px solid rgba(122, 184, 230, 0.6);
	color: #2c3e50;
	border-radius: 6px;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	text-shadow: 0 1px 0 white;
	box-shadow: 0 2px 4px var(--aero-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.theme-toggle:hover {
	background: linear-gradient( 180deg, rgba(255, 255, 255, 0.95), rgba(230, 242, 255, 0.95) );
	box-shadow: 0 4px 8px var(--aero-shadow), inset 0 1px 0 rgba(255, 255, 255, 1);
}

#music-toggle, #project-button, #minigame-button, #nohook-button, #checkmate-button {
	position: fixed;
	bottom: 20px;
	z-index: 1000;
}

#music-toggle {
	right: 20px;
	bottom: 50px;
}

#project-button {
	right: 20px;
	bottom: 100px;
}

#minigame-button {
	right: 20px;
	bottom: 150px;
}

#checkmate-button {
	right: 20px;
	bottom: 200px;
}

#nohook-button {
	right: 20px;
	bottom: 250px;
}

.rounded-2xl {
	max-width: 900px !important;
	margin: auto;
}

.cyber-container {
	margin: 12px !important;
	padding: 1rem !important;
	min-height: 80px !important;
}

.p-6 {
	padding: 1rem !important;
}

.mt-6 {
	margin-top: 0.5rem !important;
}

.mb-4 {
	margin-bottom: 0.5rem !important;
}

.text-3xl {
	font-size: 1.5rem !important;
}

.text-2xl {
	font-size: 1.25rem !important;
}

.w-40 {
	width: 120px !important;
	height: 120px !important;
}

.activity-item {
	margin-top: 0.5rem !important;
	padding: 0.5rem !important;
}

.spotify-player {
	padding: 0.5rem !important;
	gap: 0.5rem !important;
}

.album-art {
	width: 50px !important;
	height: 50px !important;
}

#music-toggle {
	right: 10px;
	bottom: 30px;
}

#project-button {
	right: 10px;
	bottom: 70px;
}

#minigame-button {
	right: 10px;
	bottom: 110px;
}

#checkmate-button {
	right: 10px;
	bottom: 150px;
}

#nohook-button {
	right: 10px;
	bottom: 190px;
}

.music-toggle, .project-button, .checkmate-button, .nohook-button, .minigame-button {
	padding: 8px 16px !important;
	font-size: 0.8rem !important;
}