/*!
    
 =========================================================
 * 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
 
 =========================================================
 
*/
@font-face {
	font-family: 'balgrufregular';
	src: url('../fonts/balgruf-webfont.woff2') format('woff2'),
		url('../fonts/balgruf-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'balgrufitalic';
	src: url('../fonts/balgruf_italic-webfont.woff2') format('woff2'),
		url('../fonts/balgruf_italic-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html {
	min-width: 833px;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	background: linear-gradient(to bottom, #390422 0%, #490921 20%, #af2426 100%);
	background-attachment: fixed;
	font-family: Verdana, sans-serif;
}



a {
	color: #ffbc0e;
	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: #ffda8a;
}

img {
	border: 0px;
}

input[type=text],
input[type=password],
input[type=number] {
	background: #fafafa;
	border: 1px solid #e3e3e3;
	color: #666;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus {
	border: 1px solid #ccc;
}

#header {
	background: url('../img/header.png') no-repeat center top;
	width: 833px;
	height: 240px;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.header-logo {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 100 !important;
	cursor: pointer !important;
}

#container {
	background: #741420;
	width: 833px;
	height: auto;
	margin: 0px auto;
	border-radius: 0px;
}

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

.sidebar {
	width: 207px;
	float: left;
}

.main-body {
	width: 626px;
	float: left;
	box-sizing: border-box;
	position: relative;
	min-height: 500px;
}

.main-body-subpage {
	background:
		url('../img/account_content_bk.png') no-repeat center top,
		url('../img/account_content_repeat_bk.png') repeat-y center top;
	padding-top: 80px;
	padding-left: 75px;
	padding-right: 75px;
	padding-bottom: 60px;
	/* Space for the bottom cap */
	position: relative;
	min-height: 500px;
}

.main-body-subpage::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	/* Adjust based on account_content_bottom_bk.png height */
	background: url('../img/account_content_bottom_bk.png') no-repeat calc(50% - 4.13px) bottom;
	pointer-events: none;
}

/* USER CP DASHBOARD REDESIGN */
.usercp-dashboard {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px 0;
}

.usercp-item {
	width: 110px;
	text-align: center;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}

.usercp-item:hover {
	transform: translateY(-5px);
}

.usercp-item a {
	text-decoration: none !important;
	display: block;
}

.usercp-icon {
	width: 100px;
	margin: 0 auto;
	padding: 8px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid #333;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.usercp-item:hover .usercp-icon {
	border-color: #cc5500;
	box-shadow: 0 0 10px rgba(204, 85, 0, 0.3);
	background: rgba(0, 0, 0, 0.6);
}

.usercp-icon img {
	width: 80px;
	height: 80px;
	display: block;
	margin: 0 auto;
}

.usercp-label {
	margin-top: 10px;
	font-family: 'Outfit', sans-serif;
	color: #fc8f49;
	font-size: 13px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.usercp-item:hover .usercp-label {
	color: #fff;
}

/* PREMIUM FORM STYLES (SUBPAGES) */
.main-body-subpage .form-control {
	background: rgba(17, 17, 17, 0.8) !important;
	border: 1px solid #3a3a3a !important;
	border-radius: 2px !important;
	color: #eee !important;
	font-family: 'Outfit', sans-serif !important;
	height: 40px !important;
	transition: all 0.3s ease;
	box-shadow: none !important;
}

.main-body-subpage .form-control:focus {
	border-color: #cc5500 !important;
	box-shadow: 0 0 8px rgba(204, 85, 0, 0.3) !important;
	background: rgba(22, 22, 22, 0.9) !important;
}

.main-body-subpage .control-label {
	color: #fc8f49 !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 500 !important;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	padding-top: 10px !important;
}

.main-body-subpage .help-block,
.main-body-subpage .help-block a {
	color: #999 !important;
	font-size: 11px !important;
	font-family: 'Outfit', sans-serif !important;
}

.main-body-subpage .help-block a:hover {
	color: #fc8f49 !important;
	text-decoration: underline !important;
}

.main-body-subpage .btn-primary {
	background: #cc5500 !important;
	border: 1px solid #8a3a00 !important;
	padding: 8px 25px !important;
	font-family: 'Outfit', sans-serif !important;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
	color: #fff !important;
	border-radius: 4px !important;
	font-size: 11px !important;
}

.main-body-subpage .btn-primary:hover {
	background: #fc8f49 !important;
	color: #000 !important;
	border-color: #fff !important;
}

/* NEWS BLOCK REDESIGN (WEBZEN ONLY) */
section#content aside#news {
	width: 612px;
	height: 234px;
	background: url('../img/news_bk.png') no-repeat;
	margin-bottom: 0 !important;
}

section#content aside#updates {
	width: 612px;
	height: 303px;
	background: url('../img/latest_updates.png') no-repeat;
	margin-top: -50px !important;
	position: relative;
	z-index: 10;
}

section#content aside#news h2 {
	margin: 0 0 0 2.5em;
	padding: 2em 0 0 0.5em;
	color: #fff;
	font-family: 'balgrufregular';
	font-weight: normal;
	font-size: 1.2em;
	line-height: 1.7em;
	background: linear-gradient(to top, #000 1%, #f9f9f9 27%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	/* For Firefox */
}

section#content aside#news ul {
	margin: 0 5em 0 2em;
	padding: 0;
	list-style: none;
}

section#content aside#news li {
	margin-left: 50px;
	width: 450px;
	margin-bottom: 2px;
}

section#content aside#news a {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #d38379;
	padding: 0.2em 0;
	font-size: 0.7em;
	text-decoration: underline !important;
}

section#content aside#news a:hover {
	background: #111 !important;
	color: #fc8f49 !important;
	text-decoration: none !important;
}

section#content aside#news a span {
	float: right;
	color: #d38379;
	text-decoration: none !important;
}

section#content aside#news a:hover span {
	color: #fc8f49 !important;
}

/* REDUNDANT SIDEBAR CLEANUP (HOME MODULE) */
.main-body .row .col-xs-4 {
	width: 100% !important;
	float: none !important;
	margin-bottom: 20px;
}

/* SIDEBAR PANEL STYLING REFINEMENT */
.panel-sidebar {
	border: none;
	background: transparent !important;
}

.panel-sidebar>.panel-heading {
	background: rgba(0, 0, 0, 0.4) !important;
	color: #fff !important;
	border: none !important;
}

.panel-sidebar>.panel-body {
	background: rgba(0, 0, 0, 0.1) !important;
	border: none !important;
}

.sidebar-banner {
	margin-bottom: 20px;
}

.footer {
	width: 833px;
	background: #161616;
	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;
}

.footer * {
	margin: 0;
	padding: 0.5em;
	color: #777;
	font-size: 0.9em;
	text-align: center;
	background: #161616;
}

.footer a {
	color: #aaa;
	font-size: 1.1em;
	padding: 0;
	text-decoration: none;
}

.footer a:hover {
	color: #fff;
	text-decoration: underline !important;
}

.footer hr {
	border-top: 1px solid #cacaca;
}

.footer .footer-social-link {
	filter: grayscale(100%);
	transition: all .3s ease;
}

.footer .footer-social-link:hover {
	filter: grayscale(0%);
}

#navbar {
	position: absolute;
	top: 1em;
	right: 0;
	font-size: 0.75em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.65);
}

#navbar ul {
	margin: 0;
	padding: 0 0 0 4em;
	-webkit-padding-start: 4em;
}

#navbar ul li,
#navbar ul li a {
	display: inline-block;
}

#navbar ul li a {
	display: inline-block;
	padding: 0.75em 1.5em;
	text-decoration: none;
	color: #cc5500 !important;
	font-size: 0.85em;
	transition: all .3s ease;
}

#navbar ul li a:active,
#navbar ul li a:focus,
#navbar ul li a:hover {
	background: #161616;
	color: #fc8f49 !important;
	text-decoration: none;
}

/* ACCOUNT DROPDOWN */
#navbar .dropdown {
	position: relative;
}

#navbar .dropdown-content {
	display: none;
	position: absolute;
	background: rgba(0, 0, 0, 0.65);
	min-width: 50px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
	z-index: 1001;
	right: 0;
	top: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

#navbar .dropdown:hover .dropdown-content {
	display: block;
}

#navbar .dropdown-content li {
	display: block !important;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#navbar .dropdown-content li:last-child {
	border-bottom: none;
}

#navbar .dropdown-content li a {
	display: block !important;
	padding: 0.75em 1.5em !important;
	text-align: right;
	width: 100%;
	box-sizing: border-box;
}

#navbar .dropdown-content li a:hover {
	background: #161616;
	color: #fc8f49 !important;
}

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

.page-title {
	display: none;
	/* Hidden by default (home page) */
}

.main-body-subpage .page-title {
	display: flex;
	/* Shown only on subpages */
	background: url('../img/main_header.png') no-repeat center top;
	height: 64px;
	/* Adjust if the image height is different */
	position: absolute;
	top: 6px !important;
	left: 0;
	width: 100%;
	align-items: center;
	justify-content: flex-start !important;
	padding-left: 75px !important;
	/* Move 10px to the right */
	margin-bottom: 0 !important;
	color: #fff;
	font-family: 'balgrufregular' !important;
	font-size: 1.2em !important;
	line-height: 1.7em !important;
	font-weight: normal !important;
	text-transform: none !important;
}

.page-title span {
	position: relative;
	top: -15px !important;
	/* Move 3px higher */
}

/* NEWS MODULE */
.panel-news {
	margin-bottom: 30px;
	color: #333;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 0px #e3e3e3;
	-webkit-box-shadow: 0 0 0px #e3e3e3;
	box-shadow: 0 0 0px #e3e3e3;
}

.panel-news .panel-heading {
	padding-top: 10px;
	padding-bottom: 10px;
}

.panel-news .panel-title {
	color: #000000;
	font-size: 24px;
	font-weight: bold;
}

.panel-news .panel-body {
	padding: 10px;
}

.panel-news .panel-footer {
	border-top: 1px solid #e7e7e7;
	background: #fff;
	font-style: italic;
	font-size: 11px;
	height: 40px;
	color: #777;
}

/* RANKINGS MODULE */
.rankings-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.rankings-class-image {
	width: 30px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.rankings-table tr td {
	border-bottom: 1px solid #e3e3e3;
	padding: 10px;
	font-size: 18px;
	vertical-align: middle !important;
	text-align: center;
}

.rankings-table-place {
	color: #666;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}

.rankings-table tr:first-child td {
	color: #3f6588;
	border-bottom: 3px solid #3f6588;
}

.rankings-update-time {
	text-align: right;
	font-size: 11px;
	color: #ccc;
	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: #ccc;
	font-size: 24px;
}

.rankings_menu a {
	display: inline-block;
	width: 150px;
	border: 1px solid #e3e3e3;
	text-align: center;
	padding: 2px 0px;
	margin: 2px;
	background: #f1f1f1;
	-moz-border-radius: 2px;
	border-radius: 2px;
	color: #ccc;
}

.rankings_menu a.active {
	color: #333;
	border-color: #333;
}

.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: #f1f1f1;
	border: 1px solid #e3e3e3;
}

.myaccount-table tr td:first-child {
	color: #666;
	font-weight: bold;
}

.myaccount-table tr td {
	border-bottom: 1px solid #e3e3e3;
	padding: 15px !important;
}

.myaccount-table tr:last-child td {
	border: 0px;
}

/* GENERAL TABLE UI */
.general-table-ui {
	width: 100%;
	table-layout: fixed;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	padding: 10px;
	margin: 10px 0px;
}

.general-table-ui tr td {
	padding: 5px;
	vertical-align: middle !important;
}

.general-table-ui tr:first-child td {
	color: #3f6588;
}

.general-table-ui tr:nth-child(2n+2) td {
	background: #fafafa;
}

.general-table-ui tr td {
	text-align: center;
}

.general-table-ui img {
	width: 50px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* TERMS OF SERVICE PAGE */
.tos_list li {
	color: #aa0000;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 40px;
}

.tos_list li p {
	color: #444;
	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: #fef2da;
	border: 3px solid #f79433;
	padding: 15px;
	overflow: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-weight: bold;
}

.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;
}

.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;
}

#usercp-floating {
	position: fixed;
	left: 0;
	top: 150px;
	width: 200px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8) !important;
	border: 1px solid #3f6588;
	border-left: none;
	border-radius: 0 5px 5px 0;
	padding: 5px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#usercp-floating .panel-sidebar {
	box-shadow: none !important;
	margin: 0 !important;
}

.panel-sidebar {
	background: #f1f1f1;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
}

.panel-sidebar>.panel-heading {
	background: #fff;
	color: #3f6588;
	font-family: 'PT Sans', sans-serif;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border-bottom: 3px solid #3f6588;
}

.panel-usercp {
	background: url('../img/usercp_bg.jpg') no-repeat top center;
	background-size: cover;
}

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

.panel-usercp ul li {
	display: table;
	width: 100%;
	vertical-align: middle;
	line-height: 30px;
}

.panel-usercp ul li a {
	color: #444 !important;
	font-weight: bold;
}

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

.panel-usercp ul li img {
	position: relative;
	top: -2px;
	width: 25px;
	height: 25px;
	margin-right: 5px;
}

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

.sidebar-banner img {
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
	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: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}

.panel-body .panel-title {
	color: #666;
	font-family: 'balgrufregular' !important;
	font-size: 14px;
	border-bottom: 1px solid #e3e3e3;
	margin-bottom: 20px !important;
	font-weight: normal !important;
}

h2,
h3 {
	font-family: 'Outfit' !important;
	font-weight: normal !important;
}

/* ADD STATS MODULE */
.panel-addstats {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}

.panel-addstats .character-avatar img {
	width: 100px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.panel-addstats .character-name {
	color: #666;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid #e3e3e3;
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* DOWNLOADS */
.panel-downloads {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}

.download-description {
	font-size: 11px;
	position: relative;
	top: -7px;
	color: #777;
}

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

/* WEBENGINE CMS */
.webengine-powered {
	color: #777 !important;
}

.webengine-powered:active,
.webengine-powered:hover {
	color: #ff3214 !important;
}



/* 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(0, 0, 0, 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%);
}

.webengine-language-switcher li a {
	color: #999999;
}

.webengine-language-switcher li a:hover {
	color: #ffffff !important;
}





/* ONLINE BAR */
.webengine-online-bar {
	width: 100%;
	background: #000000;
	border: 1px solid #555555;
	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: #00ff00 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;
}

.webengine-online-bar:hover {
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
}

/* MY ACCOUNT CHARACTER LIST */
.myaccount-character-block {
	background: #333;
	border: 1px solid #666;
	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: #000;
	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.5);
	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: #000;
	font-size: 16px;
}

/* 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;
}

.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: #000000;
	font-size: 11px;
	cursor: pointer;
}

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

.rankings-class-filter-selection:hover img {
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
}

.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 .home-news-block-header h2 {
	padding: 0px !important;
	margin: 0px 0px 20px 0px !important;
	font-style: italic;
}

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

.home-news-block-article {
	margin-top: 10px;
}

.home-news-block-article .home-news-block-article-type {
	display: block;
	border: 1px solid #3f6588;
	padding: 5px;
	text-align: center;
	color: #3f6588;
}

.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;
}

/* Event Timer Block */

.event-schedule-open {
	color: green;
}

.event-schedule-inprogress {
	color: orange;
}

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

/* USER CP SIDEBAR REDESIGN */
section.sub_sidebar .usercp-container {
	margin: 0 15px !important;
	padding: 2.5em 0.6em 4.2em 0.15em !important;
	min-height: 15em !important;
	background-image: url(../img/sidebar_top.png), url(../img/sidebar_bottom.png) !important;
	background-position: 20% top, 20% calc(100% - 2px) !important;
	background-repeat: no-repeat, no-repeat !important;
	background-size: auto, 94% auto !important;
	display: block !important;
}

.sidebar-header-banner {
	background: #000 !important;
	margin: 0 15px 0 !important;
	/* Removed bottom margin */
	padding: 0 !important;
	/* Removed bottom padding for flush fit */
	text-align: center !important;
	display: block !important;
}

.sidebar-header-banner img {
	max-width: 100% !important;
	height: auto;
}

.sidebar-flipped-cap {
	width: calc(100% - 17px) !important;
	/* Match panel width */
	transform: rotate(180deg) !important;
	display: block !important;
	margin: -25px auto 15px !important;
	/* Larger overlap to ensure no gap */
	position: relative !important;
	left: -4px !important;
}

.usercp-container+.sidebar-header-banner {
	margin-top: 20px !important;
}

.banner-wrapper {
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
}

.banner-region-label {
	position: absolute !important;
	top: calc(50% + 3px) !important;
	left: calc(50% - 35px) !important;
	transform: translate(-50%, -50%) !important;
	color: #fff !important;
	font-family: 'balgrufregular', sans-serif !important;
	font-size: 14px !important;
	text-transform: uppercase !important;
	letter-spacing: 2px !important;
	text-shadow: 0 0 10px rgba(252, 143, 73, 0.8) !important;
	pointer-events: none !important;
	width: 100% !important;
	text-align: center !important;
}

section#sidebar ul,
section#sidebar p {
	margin: 0 0 4.25em !important;
	padding: 0.5em !important;
	background: #000 !important;
	display: block !important;
}

section#sidebar p {
	min-height: 11.5em !important;
	font-size: 0.7em !important;
	color: #ccc !important;
}

section#sidebar ul li {
	list-style-type: none !important;
}

section#sidebar ul li a {
	display: inline-block !important;
	width: 100% !important;
	padding: 0.75em 0 !important;
	color: #d6391a !important;
	font-size: 0.7em !important;
	font-weight: bold !important;
	text-decoration: none !important;
	transform: scaleY(1.02) !important;
	border-bottom: 1px dotted #5d5d5d !important;
}

section#sidebar ul li a:hover {
	background: #161616 !important;
	color: #fc8f49 !important;
}

.sidebar-gallery {
	margin: 0 !important;
	text-align: center;
}

.gallery-item {
	margin: 20px auto 5px !important;
	/* Reduced bottom margin */
	padding: 10px !important;
	width: 120px !important;
	border: 1px solid #4c453a !important;
	outline: 1px solid #7a5f5c !important;
}

.gallery-item:last-child {
	margin-bottom: 0 !important;
}

.sidebar-gallery img {
	display: block !important;
	width: 95px !important;
	height: 90px !important;
	margin: 0 auto !important;
}

.region-count {
	display: block !important;
	color: #fc8f49 !important;
	font-weight: bold !important;
	font-size: 0.9em !important;
	margin-top: 5px !important;
	margin-bottom: 25px !important;
	/* Spacing between the counter and the next item */
	text-shadow: 1px 1px 2px #000 !important;
	font-family: 'Outfit', sans-serif !important;
	text-align: center !important;
}

/* =========================================================
   PREMIUM DESIGN SYSTEM RESTORATION - CHUNK 1 (USER CP)
   ========================================================= */

/* CHARACTER GRID & ACTIONABLE CARDS */
.character-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 10px 0;
	margin-top: 25px !important;
}

.character-card {
	background: rgba(10, 10, 10, 0.6);
	border: 1px solid #222;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	transition: all 0.2s ease;
	overflow: hidden;
	position: relative;
}

.character-card:hover {
	border-color: #444;
	background: rgba(20, 20, 20, 0.8);
}

.char-avatar {
	width: 40px;
	margin-right: 12px;
}

.char-avatar img {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	border: 1px solid #333;
	background: #000;
}

.char-info {
	flex: 1;
	min-width: 0;
}

.char-name {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.char-name a {
	color: #fff !important;
	text-decoration: none !important;
}

.char-stats-grid,
.char-meta {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.char-stat,
.char-level,
.char-map {
	font-size: 9px;
	color: #777;
	border: 1px solid #222;
	padding: 1px 6px;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.3);
}

.stat-label {
	text-transform: uppercase;
	margin-right: 2px;
	opacity: 0.7;
}

.stat-value,
.char-level {
	color: #fc8f49;
	font-weight: 600;
}

.char-action {
	margin-left: 12px;
	width: 100px;
	flex-shrink: 0;
}

.char-action .btn {
	padding: 6px 4px !important;
	font-size: 9px !important;
	width: 100%;
	white-space: normal !important;
	height: auto !important;
	line-height: 1.1 !important;
	text-align: center;
}

/* ACCOUNT INFO GRID (MY ACCOUNT) */
.account-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 25px !important;
	margin-bottom: 25px;
}

.info-card {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid #333;
	padding: 15px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.info-label {
	display: block;
	font-size: 9px;
	color: #fc8f49;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-weight: 600;
	letter-spacing: 1px;
}

.info-value {
	display: block;
	font-size: 14px;
	color: #fff;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
}

.info-footer {
	margin-top: 10px;
	text-align: right;
}

.credit-card {
	background: rgba(252, 143, 73, 0.05);
	border-color: rgba(252, 143, 73, 0.2);
}

.credit-card .info-value {
	color: #fc8f49;
	font-weight: 700;
	font-size: 16px;
}

/* MODULE REQUIREMENTS BOX */
.module-requirements-box {
	margin-top: 30px;
	background: rgba(252, 143, 73, 0.05);
	border: 1px solid rgba(252, 143, 73, 0.2);
	border-radius: 8px;
	padding: 18px;
	position: relative;
	overflow: hidden;
}

.module-requirements-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: #fc8f49;
}

.requirements-header {
	font-family: 'Outfit', sans-serif;
	color: #fc8f49;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 1px;
}

.req-item {
	font-size: 11px;
	color: #ccc;
	margin-bottom: 5px;
	font-family: 'Outfit', sans-serif;
	list-style: none;
	padding-left: 15px;
	position: relative;
}

.req-item::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #fc8f49;
	opacity: 0.6;
}

/* =========================================================
   PREMIUM DESIGN SYSTEM RESTORATION - CHUNK 2 (GLOBAL)
   ========================================================= */

/* GLOBAL RANKINGS & TABLES */
.rankings-table {
	width: 100% !important;
	border-collapse: separate !important;
	border-spacing: 0 4px !important;
	table-layout: fixed !important;
	background: transparent !important;
	margin-top: 25px !important;
}

.rankings-table td {
	padding: 10px 5px !important;
	background: rgba(0, 0, 0, 0.3) !important;
	border: none !important;
	color: #bbb !important;
	font-size: 10.5px !important;
	font-family: 'Outfit', sans-serif !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.rankings-table tr td:first-child {
	border-radius: 8px 0 0 8px;
	width: 25px;
}

.rankings-table tr td:last-child {
	border-radius: 0 8px 8px 0;
}

.rankings-table tr:first-child td {
	font-family: 'Outfit', sans-serif;
	color: #fc8f49 !important;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 9px;
}

.rank-class-tag {
	font-size: 7.5px !important;
	padding: 0.5px 3px !important;
	border-radius: 2px !important;
	margin-left: 5px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	background: rgba(252, 143, 73, 0.1);
	color: #fc8f49;
	border: 1px solid rgba(252, 143, 73, 0.3);
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

/* UNHIDE REGION COLUMN */
.rankings-table td:nth-child(2) {
	display: table-cell !important;
	width: 35px;
}

.rankings-region-icon {
	width: 30px !important;
	height: 30px !important;
	border-radius: 4px !important;
	border: 1px solid #333 !important;
	object-fit: cover !important;
}

/* RANKINGS MENU */
.rankings_menu {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 25px !important;
	justify-content: center;
}

.rankings_menu a {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid #333 !important;
	padding: 4px 10px !important;
	border-radius: 4px !important;
	color: #888 !important;
	font-size: 10px !important;
	text-decoration: none !important;
}

.rankings_menu a:hover,
.rankings_menu a.active {
	background: #fc8f49 !important;
	color: #000 !important;
	border-color: #fc8f49 !important;
}

/* CASTLE SIEGE */
.castle-siege-block {
	padding: 20px 0;
	margin-top: 25px !important;
}

.castle-siege-block h2 {
	font-family: 'Outfit', sans-serif;
	color: #fc8f49;
	font-size: 14px;
	text-transform: uppercase;
	margin: 30px 0 15px;
	border-bottom: 2px solid rgba(252, 143, 73, 0.2);
	padding-bottom: 8px;
}

.castle-owner-card {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid #333;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
}

#siegeTimer {
	background: rgba(252, 143, 73, 0.05);
	border: 1px dashed #fc8f49;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	font-size: 24px;
	color: #fc8f49;
	font-family: 'Outfit', sans-serif;
}

/* DOWNLOADS */
.download-category-title {
	font-family: 'Outfit', sans-serif;
	color: #fc8f49;
	font-size: 14px;
	text-transform: uppercase;
	margin: 30px 0 15px;
	border-bottom: 2px solid rgba(252, 143, 73, 0.2);
	padding-bottom: 8px;
}

.download-card {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid #333;
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.download-card:hover {
	border-color: #fc8f49;
	background: rgba(252, 143, 73, 0.03);
}

.btn-download-action {
	background: #fc8f49;
	color: #000 !important;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 6px 15px;
	border-radius: 4px;
	text-decoration: none !important;
}

/* HOME RANKING CARDS SECTION */
.ranking-home-cards {
	display: flex !important;
	flex-wrap: wrap !important;
	max-width: 610px !important;
	margin: 30px auto 0 auto !important;
	justify-content: center !important;
}

.ranking-home-card {
	flex: 1;
	min-width: 180px !important;
	max-width: 190px !important;
	margin: 0 5px 15px 5px !important;
	background: #000 !important;
	border: none !important;
	border-radius: 4px;
	overflow: hidden;
	transition: none;
	display: flex !important;
	flex-direction: column !important;
}

.ranking-home-card:hover {
	transform: none;
	box-shadow: none;
	background: #000 !important;
}

.ranking-card-header {
	background: url('../img/hot_movie_header.png') no-repeat center top !important;
	background-size: contain !important;
	padding: 10px 15px !important;
	color: #fff !important;
	font-family: 'balgrufregular', sans-serif !important;
	font-size: 13px !important;
	text-align: left !important;
	border-bottom: none !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start !important;
}

.ranking-card-body {
	padding: 5px 0 !important;
	flex: 1 !important;
}

.ranking-card-item {
	display: flex !important;
	align-items: center !important;
	padding: 8px 10px !important;
	border-bottom: none !important;
	transition: background 0.2s ease;
}

.ranking-card-item:hover {
	background: rgba(252, 143, 73, 0.1) !important;
}

.ranking-card-item:last-child {
	border-bottom: none !important;
}

.rank-number {
	width: 25px !important;
	font-family: 'Outfit', sans-serif !important;
	color: #777 !important;
	font-size: 11px !important;
	font-weight: bold !important;
	text-align: center !important;
	flex-shrink: 0;
}

.rank-avatar {
	width: 32px !important;
	height: 32px !important;
	background: #000 !important;
	border-radius: 4px;
	overflow: hidden;
	border: none !important;
	margin: 0 10px !important;
	flex-shrink: 0;
}

.rank-avatar img.rank-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}

.rank-info {
	flex: 1 !important;
	overflow: hidden !important;
}

.rank-name {
	font-family: 'Outfit', sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #fff !important;
	white-space: nowrap !important;
	text-overflow: ellipsis !important;
	overflow: hidden !important;
	display: flex !important;
	align-items: center !important;
}

.rank-name a {
	color: #fff !important;
}

.rank-name a:hover {
	color: #fc8f49 !important;
	text-decoration: none !important;
}

.rank-flag {
	width: 14px !important;
	height: 11px !important;
	border-radius: 2px !important;
	margin-left: 5px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}

/* GLOBAL RANKINGS & TABLES MODERIZATION */
.rankings-table {
	width: 100% !important;
	border-collapse: separate !important;
	border-spacing: 0 4px !important;
	table-layout: fixed !important;
	background: transparent !important;
	margin-top: 25px !important;
}

.rankings-table td {
	padding: 10px 5px !important;
	background: rgba(0, 0, 0, 0.3) !important;
	border: none !important;
	color: #bbb !important;
	font-size: 10.5px !important;
	font-family: 'Outfit', sans-serif !important;
	text-align: center !important;
	vertical-align: middle !important;
}

.rankings-table tr td:first-child {
	border-radius: 8px 0 0 8px;
	width: 25px;
}

.rankings-table tr td:last-child {
	border-radius: 0 8px 8px 0;
}

.rankings-table tr:first-child td {
	font-family: 'Outfit', sans-serif;
	color: #fc8f49 !important;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 9px;
}