/*!
    
 =========================================================
 * WebEngine CMS
 * https://webenginecms.org/
 =========================================================
 
 * Author Lautaro Angelico (https://lautaroangelico.com/)
 * Copyright (c) 2013-2022 Lautaro Angelico, All Rights Reserved
 
 * Licensed under the MIT license
 * http://opensource.org/licenses/MIT
 
 =========================================================
 
*/
html {
	min-width: 1040px;
	height: 100%;
}

body {
	background: #000000 url('../img/background.jpg') no-repeat top center;
	color: #e0e0e0;
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	height: 100%;
}

@media only screen and (min-width: 2000px) {
	body {
		background: #000000 url('../img/background-2600.jpg') no-repeat top center !important;
	}
}

a {
	color: #9c59ff;
	text-decoration: none;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:hover {
	color: #6818ca;
}

img {
	border: 0px;
}

input[type=text], input[type=password], input[type=number] {
	background: #2a2a2a;
	border: 1px solid #444;
	color: #e0e0e0;
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
	border: 1px solid #6818ca;
	box-shadow: 0 0 5px rgba(104, 24, 202, 0.5);
}

#header {
	width: 100%;
	margin: 0px auto;
	padding: 80px 0px 10px 0px;
	text-align: center;
	color: #fff;
}

#container {
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(10px);
	width: 1040px;
	height: auto;
	margin: 0px auto;
	padding: 20px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	-moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	-khtml-border-radius: 5px 5px 0px 0px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

#content {
	width: 100%;
	overflow: auto;
	min-height: 500px;
	padding: 10px 20px 0px 20px;
}

.footer {
	background: rgba(20, 20, 20, 0.9);
	backdrop-filter: blur(10px);
	font-family: 'Segoe UI', 'Lucida Sans Unicode', 'Lucida Grande', 'Tahoma', 'Arial', 'sans-serif';
	width: 1040px;
	font-size: 12px;
	color: #aaaaaa;
	padding: 40px;
	overflow: auto;
	margin: 0px auto 100px auto;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	-khtml-border-radius: 0px 0px 5px 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-top: none;
}
	.footer > .footer-container {
		width: 100%;
		margin: 0px auto;
	}
		.footer > .footer-container a:hover {
			text-decoration: underline !important;
		}
	.footer hr {
		border-top: 1px solid #333;
	}
	.footer .footer-social-link {
		filter: grayscale(100%);
		transition: all .3s ease;
	}
	.footer .footer-social-link:hover {
		filter: grayscale(0%);
	}

#navbar {
	width: 100%;
	backdrop-filter: blur(5px);
	border-bottom: 1px solid rgba(236, 240, 236, 0.1);
	background-color: rgba(0, 0, 0, 0.482);
}

#navbar ul{
	text-align: center;
	margin: 0px;
	-webkit-padding-start: 0px;
}

#navbar ul li {
	list-style-type: none;
	display: inline-block;
	font-size: 16px;
}

#navbar ul li a {
	display: inline-block;
	color: #fdf7f7 !important;
	text-decoration: none;
	padding: 20px 30px;
	transition: all .3s ease;
	text-transform: uppercase;
}

#navbar ul li a:active, #navbar ul li a:focus, #navbar ul li a:hover {
	color: #FFFFFF !important;
	text-decoration: none;
	background-color: rgba(113, 4, 247, 0.967);
}

.admincp-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #6818ca !important;
	border: 2px solid #000000 !important;
	color: #f3eeee !important;
	font-weight: bold !important;
}

.page-title {
	color: #6818ca;
	font-family: 'PT Sans', sans-serif;
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: bold;
	text-shadow: 0 0 5px rgba(104, 24, 202, 0.5);
}

/* NEWS MODULE */
.panel-news {
	margin-bottom: 30px;
	color: #e0e0e0;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	background-color: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}
.panel-news .panel-heading {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: rgba(40, 40, 40, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.panel-news .panel-title {
	color: #777777;
	font-size: 24px;
	font-weight: bold;
}
.panel-news .panel-body {
	padding: 10px;
}
.panel-news .panel-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(25, 25, 25, 0.7);
	font-style: italic;
	font-size: 11px;
	height: 40px;
	color: #1d1c1c;
}

/* RANKINGS MODULE */
.rankings-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	background-color: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
}

.rankings-class-image {
	width: 30px;
	height: auto;
	-moz-box-shadow: 0 0 5px #000;
	-webkit-box-shadow: 0 0 5px #000;
	box-shadow: 0 0 5px #000;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.rankings-table tr td {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 10px;
	font-size: 18px;
	vertical-align: middle !important;
	text-align: center;
	color: #e0e0e0;
}
.rankings-table-place {
	color: #aaaaaa;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}
.rankings-table tr:first-child td {
	color: #6818ca;
	border-bottom: 3px solid #6818ca;
	background-color: rgba(104, 24, 202, 0.1);
}
.rankings-update-time {
	text-align: right;
	font-size: 11px;
	color: #aaaaaa;
	padding: 10px 0px;
}
.rankings_menu {
	width: 100%;
	overflow: auto;
	text-align: center;
	margin-bottom: 10px;
}
.rankings_menu span {
	width: 100%;
	display: inline-block;
	padding: 10px 0px;
	color: #FFFFFF;
	font-size: 24px;
}
.rankings_menu a {
	display: inline-block;
	width: 150px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	padding: 2px 0px;
	margin: 2px;
	background: rgba(40, 40, 40, 0.7);
	-moz-border-radius: 2px;
	border-radius: 2px;
	color: #aaaaaa;
	transition: all 0.3s ease;
}
.rankings_menu a.active {
	color: #777777;
	border-color: #6818ca;
	background-color: rgba(104, 24, 202, 0.3);
}
.rankings_menu a:hover {
	background-color: rgba(104, 24, 202, 0.2);
	color: #777777;
}
.rankings_guild_logo tr td {
	border: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
}
.rankings-gens-img {
	width: auto !important;
	height: 30px !important;
	border: 0 !important;
	-moz-box-shadow: 0 0 0px #000 !important;
	-webkit-box-shadow: 0 0 0px #000 !important;
	box-shadow: 0 0 0px #000 !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}

/* MY ACCOUNT MODULE */
.myaccount-table {
	width: 100%;
	background: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}
.myaccount-table tr td:first-child {
	color: #aaaaaa;
	font-weight: bold;
}
.myaccount-table tr td {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 15px !important;
	color: #e0e0e0;
}
.myaccount-table tr:last-child td {
	border: 0px;
}

/* GENERAL TABLE UI */
.general-table-ui {
	width: 100%;
	table-layout: fixed;
	background: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 10px;
	margin: 10px 0px;
}
.general-table-ui tr td {
	padding: 5px;
	vertical-align: middle !important;
	color: #e0e0e0;
}
.general-table-ui tr:first-child td {
	color: #6818ca;
	background-color: rgba(104, 24, 202, 0.1);
}
.general-table-ui tr:nth-child(2n+2) td {
	background: rgba(40, 40, 40, 0.5);
}
.general-table-ui tr td {
	text-align: center;
}
.general-table-ui img {
	width: 50px;
	height: auto;
	-moz-box-shadow: 0 0 5px #000;
	-webkit-box-shadow: 0 0 5px #000;
	box-shadow: 0 0 5px #000;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* TERMS OF SERVICE PAGE */
.tos_list li {
	color: #ff5555;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 40px;
}
.tos_list li p {
	color: #e0e0e0;
	text-align: justify;
	text-justify: inter-word;
	text-transform: none;
	padding-right: 35px;
	font-size: 14px;
	font-weight: normal;
}

/* PAYPAL */
.paypal-gateway-container {
	width: 100%;
}

.paypal-gateway-content {
	background: rgba(254, 242, 218, 0.9);
	border: 3px solid #f79433;
	padding: 15px;
	overflow: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-weight: bold;
	color: #333;
}

.paypal-gateway-logo {
	width: 100%;
	height: 100px;
	background: #fff9ec url('../img/paypal-logo-200-68.png') no-repeat center;
	background-size: contain;
	margin-bottom: 15px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.paypal-gateway-conversion-rate {
	margin: 0px auto;
	text-align: center;
	color: #000;
	font-size: 18px;
	padding: 10px 0px;
}

.paypal-gateway-form {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.paypal-gateway-form div {
	display: inline-block;
	padding: 0px 10px;
	color: #000;
	font-size: 24px;
}

.paypal-gateway-form input[type=text] {
	width: 60px;
	font-size: 24px;
	border: 3px solid #f79433;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #f79433;
	background: #fff;
}

.paypal-gateway-continue {
	margin: 0px auto;
	text-align: center;
}

.paypal-gateway-continue input[type=submit] {
	background: url('../img/paypal-submit.jpg') no-repeat;
	width: 200px;
	height: 40px;
	border: 0px;
}

.module-requirements {
	font-size: 12px;
	margin-top: 20px;
	color: #aaaaaa;
}

/* SIDEBAR */
.panel-sidebar {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    -moz-border-radius: 0px;
    border-radius: 0px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #252525;
}

.panel-sidebar > .panel-heading {
    background: rgba(40, 40, 40, 0.7);
    color: #6818ca;
    font-family: 'PT Sans', sans-serif;
    border: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border-bottom: 3px solid #6818ca;
}

.panel-usercp {
    background: #1a1a1a;
    background: linear-gradient(to bottom, #222222, #111111);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.panel-usercp ul {
    list-style-type: none;
    padding: 10px;
    margin: 0px;
}

.panel-usercp ul li {
    display: block; 
    width: 100%;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background-color: rgba(40, 40, 40, 0.7);
    padding: 0; 
    position: relative; 
    height: auto; 
    min-height: 40px; 
    line-height: normal; 
}

.panel-usercp ul li:hover {
    background-color: rgba(50, 50, 50, 0.7);
    border-left: 3px solid #6818ca;
}

.panel-usercp ul li a {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 45px; 
    color: #2b2a2a!important;
    font-weight: bold;
    text-decoration: none;
    box-sizing: border-box; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.panel-usercp ul li a:active, .panel-usercp ul li a:hover {
    color: #6818ca !important;
}

.panel-usercp ul li img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    z-index: 1; 
}


.panel-usercp ul li a span {
    display: inline-block;
    vertical-align: middle;
}

.sidebar-banner {
	margin: 20px 0px;
	border: 0px;
}

.sidebar-banner img {
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	border: 0px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
}

/* GENERAL PANEL STYLING */
.panel-general {
	margin-bottom: 30px;
	background: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #e0e0e0;
}

.panel-body .panel-title {
	color: #080808;
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* ADD STATS MODULE */
.panel-addstats {
	margin-bottom: 30px;
	background: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #e0e0e0;
}
.panel-addstats .character-avatar img {
	width: 100px;
	height: auto;
	-moz-box-shadow: 0 0 5px #000;
	-webkit-box-shadow: 0 0 5px #000;
	box-shadow: 0 0 5px #000;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.panel-addstats .character-name {
	color: #aaaaaa;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* DOWNLOADS */
.panel-downloads {
	margin-bottom: 30px;
	background: rgba(30, 30, 30, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #e0e0e0;
}
	.download-description {
		font-size: 11px;
		position: relative;
		top: -7px;
		color: #aaaaaa;
	}

.online-status-indicator {
	margin-left: 5px;
}

/* WEBENGINE CMS */
.webengine-powered { color: #aaaaaa !important; }
.webengine-powered:active, .webengine-powered:hover { color: #6818ca !important; }

/* GLOBAL TOP BAR */
.global-top-bar {
	width: 100%;
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(5px);
	color: #aaaaaa;
	padding: 7px 0px 2px 0px;
	text-transform: uppercase;
	font-size: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
	.global-top-bar .global-top-bar-content {
		width: 1040px;
		margin: 0px auto;
	}
		.global-top-bar .global-top-bar-content .row {
			margin: 0px;
			padding: 0px;
		}
	.global-top-bar a.logout {
		color: #ff5555 !important;
	}
	.global-top-bar a {
		color: #555555 !important;
	}
	.global-top-bar a:hover {
		color: #777777 !important;
	}
.global-top-bar-nopadding {
	padding: 0px !important;
}
.global-top-bar-separator {
	padding: 0px 5px;
}

/* LANGUAGE PICKER */
.webengine-language-switcher {
	display: inline-block;
	list-style: none;
	padding: 0px !important;
	margin: 0px !important;
	width: 46px;
	height: 19px;
	overflow: hidden;
	transition: all .3s ease;
}
.webengine-language-switcher:hover {
	width: 400px;
}
	.webengine-language-switcher li {
		display: inline-block;
		list-style-type: none;
		background: rgba(40, 40, 40, 0.9);
		padding: 0px 5px 2px 5px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		-khtml-border-radius: 3px;
		transition: all .3s ease;
	}
	.webengine-language-switcher li:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
		background-color: rgba(104, 24, 202, 0.3);
	}
	.webengine-language-switcher li a {
		color: #555555;
	}
	.webengine-language-switcher li a:hover {
		color: #777777 !important;
	}

/* WEBSITE LOGO */
.webengine-mu-logo {
	transition: all .3s ease;
}
	.webengine-mu-logo:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* HEADER INFO */
.header-info-container {
	width: 1040px;
	margin: 0px auto;
	text-align: right;
}
	.header-info-container .header-info {
		display: inline-block;
		width: 350px;
		background: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(10px);
		margin: 0px;
		padding: 20px;
		overflow: auto;
		-moz-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		-khtml-border-radius: 5px;
		text-shadow: 1px 1px 3px #000000;
		color: #777777;
		border: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 12px;
	}
		.header-info-container .header-info .header-info-block {
			padding: 0px;
			color: #aaaaaa;
		}
		.header-info-container .header-info .header-info-block #tServerTime, .header-info-container .header-info .header-info-block #tLocalTime {
			color: #777777;
		}
		.header-info-container .header-info .header-info-block #tServerDate, .header-info-container .header-info .header-info-block #tLocalDate {
			color: #555555;
		}
		.header-info-container .header-info .header-info-block .online-count {
			color: #00ff00;
		}
	
/* ONLINE BAR */
.webengine-online-bar {
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 8px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
	overflow: hidden;
	transition: all .3s ease;
}
	.webengine-online-bar .webengine-online-bar-progress {
		height: 8px;
		background: #6818ca url('../img/online_progress_bar.jpg') no-repeat left center;
		-webkit-border-radius: 0px 1px 1px 0px;
		-moz-border-radius: 0px 1px 1px 0px;
		-khtml-border-radius: 0px 1px 1px 0px;
		border-radius: 0px 1px 1px 0px;
		box-shadow: 0 0 5px rgba(104, 24, 202, 0.7);
	}
	.webengine-online-bar:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* MY ACCOUNT CHARACTER LIST */
.myaccount-character-block {
	background: rgba(30, 30, 30, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	margin: 0px auto;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
	.myaccount-character-block img {
		width: 100px;
		height: auto;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: 0 0 5px #000;
		-webkit-box-shadow: 0 0 5px #000;
		box-shadow: 0 0 5px #000;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
		.myaccount-character-block img:hover {
			-webkit-filter: brightness(120%);
			filter: brightness(120%);
		}
.myaccount-character-block-location {
	font-size: 12px;
	color: #aaaaaa;
	margin-bottom: 20px;
	margin-top: 2px;
	line-height: 1.2;
}
.myaccount-character-block-level {
	position: relative;
	top: -77px;
	display: inline-block;
	background: rgba(0,0,0,0.7);
	padding: 0px 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
}
.myaccount-character-name a {
	font-weight: bold;
	color: #e0e0e0;
	font-size: 16px;
}
.myaccount-character-name a:hover {
	color: #6818ca;
}

/* RANKINGS FILTER BY CLASS */

.rankings-class-filter {
	display: inline-block;
	list-style-type: none;
	margin: 20px auto;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
	background: rgba(20, 20, 20, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

	.rankings-class-filter li {
		display: inline-block;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rankings-class-filter li:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

.rankings-class-filter-selection {
	display: inline-block;
	width: 75px;
	text-align: center;
	color: #e0e0e0;
	font-size: 11px;
	cursor: pointer;
}

	.rankings-class-filter-selection:hover {
		color: #777777 !important;
	}

	.rankings-class-filter-selection:hover img {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
		box-shadow: 0 0 10px rgba(104, 24, 202, 0.7);
	}

.rankings-class-filter-selection img {
	width: 40px;
	height: auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%;
	margin-bottom: 5px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
}

.rankings-class-filter-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* Home - News List */

.home-news-block {
	background: rgba(20, 20, 20, 0.7);
	backdrop-filter: blur(5px);
	padding: 15px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 20px;
}

.home-news-block .home-news-block-header h2 {
	padding: 0px !important;
	margin: 0px 0px 20px 0px !important;
	font-style: italic;
	color: #6818ca;
}

.home-news-block .home-news-block-header a {
	display: inline-block;
	padding-top: 5px;
	font-style: italic;
	font-size: 16px;
	color: #9c59ff;
}

.home-news-block-article {
	margin-top: 10px;
	padding: 10px;
	background: rgba(30, 30, 30, 0.5);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.home-news-block-article:hover {
	background: rgba(40, 40, 40, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.home-news-block-article .home-news-block-article-type {
	display: block;
	border: 1px solid #6818ca;
	padding: 5px;
	text-align: center;
	color: #6818ca;
	background: rgba(104, 24, 202, 0.1);
	border-radius: 3px;
}

.home-news-block-article .home-news-block-article-title-container {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-block-article .home-news-block-article-title, .home-news-block-article .home-news-block-article-date {
	line-height: 30px;
	color: #e0e0e0;
}

/* Event Timer Block */

.event-schedule-open {
	color: #4caf50;
	font-weight: bold;
	text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.event-schedule-inprogress {
	color: #ff9800;
	font-weight: bold;
	text-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
}

.panel-sidebar-events {
	background: rgba(20, 20, 20, 0.8);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	color: #3b3939;
}

.panel-sidebar-events .smalltext {
	font-size: 11px;
	position: relative;
	top: -5px;
	color: #aaaaaa;
}

/* Botões e elementos interativos */
.btn {
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: #6818ca;
	border-color: #6818ca;
	color: #777777;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	background-color: #5714a8 !important;
	border-color: #5714a8 !important;
	box-shadow: 0 0 10px rgba(104, 24, 202, 0.5);
	transform: translateY(-2px);
}

.btn-success {
	background-color: #4caf50;
	border-color: #4caf50;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
	background-color: #05f30d !important;
	border-color: #07ee0f !important;
	box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
	transform: translateY(-2px);
}

.btn-danger {
	background-color: #f44336;
	border-color: #f44336;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
	background-color: #d32f2f !important;
	border-color: #d32f2f !important;
	box-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
	transform: translateY(-2px);
}

/* Formulários */
.form-control {
	background-color: rgba(30, 30, 30, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #423f3f ;
	border-radius: 3px;
	padding: 8px 12px;
	transition: all 0.3s ease;
}

.form-control:focus {
	background-color: rgba(40, 40, 40, 0.7);
	border-color: #6818ca;
	box-shadow: 0 0 10px rgba(104, 24, 202, 0.3);
	color: #777777;
}

/* Efeitos de hover e foco */
a:hover, button:hover, .btn:hover {
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

/* Efeitos de glassmorphism para painéis */
.panel, .panel-general, .panel-news, .panel-downloads, .panel-sidebar {
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
	transition: all 0.3s ease;
}

.panel:hover, .panel-general:hover, .panel-news:hover, .panel-downloads:hover, .panel-sidebar:hover {
	box-shadow: 0 8px 32px 0 rgba(104, 24, 202, 0.2);
}

/* Página de login e registro com tema dark */
.dark-login-container, .dark-register-container {
	background-color: rgba(20, 20, 20, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid rgba(15, 14, 14, 0.05);
}

.dark-title {
	color: #e0e0e0;
	border-bottom: 2px solid #6818ca;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.dark-form .form-control {
	background-color: rgba(30, 30, 30, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #e0e0e0;
	border-radius: 4px;
	padding: 10px 15px;
	height: auto;
	transition: all 0.3s ease;
}

.dark-form .form-control:focus {
	background-color: rgba(40, 40, 40, 0.7);
	border-color: #6818ca;
	box-shadow: 0 0 10px rgba(104, 24, 202, 0.3);
}

.dark-form label {
	color: #e0e0e0;
	font-weight: 500;
}

.dark-btn {
	background-color: #6818ca;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.dark-btn:hover {
	background-color: #5714a8;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(104, 24, 202, 0.5);
}

.forgot-link {
	color: #9c59ff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.forgot-link:hover {
	color: #6818ca;
	text-decoration: underline;
}

/* Ajustes específicos para a página de informações */

/* Estilo geral para tabelas na página de informações */
.table-condensed, 
.table-hover, 
.table-striped, 
.table-bordered {
    background-color: rgba(30, 30, 30, 0.7) !important;
    color: #666666!important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Cabeçalhos de tabela */
.table-condensed th, 
.table-hover th, 
.table-striped th, 
.table-bordered th,
.table-condensed thead tr,
.table-hover thead tr,
.table-striped thead tr,
.table-bordered thead tr {
    background-color: rgba(40, 40, 40, 0.8) !important;
    color: #6818ca !important;
    border-bottom: 2px solid #6818ca !important;
}

/* Células da tabela */
.table-condensed td, 
.table-hover td, 
.table-striped td, 
.table-bordered td {
    color: #666666!important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Linhas alternadas nas tabelas */
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(40, 40, 40, 0.5) !important;
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(30, 30, 30, 0.5) !important;
}

/* Efeito hover nas linhas */
.table-hover > tbody > tr:hover {
    background-color: rgba(104, 24, 202, 0.2) !important;
}

/* Títulos e subtítulos */
h2 {
    color: #6818ca !important;
    border-bottom: 1px solid rgba(104, 24, 202, 0.3);
    padding-bottom: 5px;
    margin-top: 25px;
    text-shadow: 0 0 5px rgba(104, 24, 202, 0.3);
}

/* Ajustes específicos para a tabela de Chaos Machine */
h2 + table {
    margin-top: 15px;
}

/* Ajustes para o iframe de vídeo */
iframe {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) !important;
}

/* Ajustes para a tabela de comandos */
table td:first-child {
    font-weight: bold;
    color: #6818ca !important;
}

/* Ajustes para a tabela de bônus de party */
table[class*="party"] td {
    text-align: center;
}

/* Ajustes para a página de título */
.page-title {
    color: #6818ca !important;
    text-shadow: 0 0 5px rgba(104, 24, 202, 0.3);
}

/* Classe para títulos com fundo escuro */
.--dark-success {
    background-color: rgba(40, 40, 40, 0.8) !important;
    border-left: 4px solid #6818ca !important;
    padding: 10px !important;
    border-radius: 0 5px 5px 0 !important;
}

/* Estilos adicionais para o ranking aprimorado */
.rankings-table .player-info {
    text-align: left;
}

.rankings-table .player-name {
    font-weight: bold;
    display: block;
}

.rankings-table .player-class {
    font-size: 12px;
    color: #aaaaaa;
    display: block;
}

.rankings-table .level-info,
.rankings-table .reset-info {
    position: relative;
    text-align: center;
}

.rankings-table .master-level,
.rankings-table .grand-reset {
    position: absolute;
    top: -8px;
    right: 50%;
    transform: translateX(50%);
    font-size: 10px;
    color: #aaaaaa;
    background-color: rgba(20, 20, 20, 0.7);
    padding: 0 3px;
    border-radius: 3px;
    line-height: 1;
    z-index: 2;
}

.rankings-table .stat-value {
    font-weight: bold;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.rankings-table .stat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rankings-table .stat-label {
    font-size: 12px;
    color: #aaaaaa;
}
