@charset "utf-8";

/* CSS Document */

/* ------------------------------------------------------------------
  Name         	: FluxCP Theme for OSRO Midrate 2024
  Designer		: s1 Lykos Designs
  Author		: ROMISC Gantz Services - [ https://gantzservices.com ] 
 * --------------------------------------------------------------------- */

@font-face {
	font-family: 'GothamCondensed-Medium';
	src: url('../fonts/GothamCondensed-Medium.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'GothamCondensed-Bold';
	src: url('../fonts/GothamCondensed-Bold.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Bold';
	src: url('../fonts/Gotham-Bold.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Book';
	src: url('../fonts/Gotham-Book.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Medium';
	src: url('../fonts/Gotham-Medium.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-Black';
	src: url('../fonts/Inter-Black.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-Bold';
	src: url('../fonts/Inter-Bold.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-ExtraBold';
	src: url('../fonts/Inter-ExtraBold.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-ExtraLight';
	src: url('../fonts/Inter-ExtraLight.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-Light';
	src: url('../fonts/Inter-Light.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-Medium';
	src: url('../fonts/Inter-Medium.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-Regular';
	src: url('../fonts/Inter-Regular.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-SemiBold';
	src: url('../fonts/Inter-SemiBold.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter-Thin';
	src: url('../fonts/Inter-Thin.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway-Bold';
	src: url('../fonts/Raleway-Bold.ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SportyPro-Bold';
	src: url('../fonts/SportyPro-Bold.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SportyPro-Regular';
	src: url('../fonts/SportyPro-Regular.otf');
	font-weight: normal;
	font-style: normal;
}

:root {
	/* Dark Mode */
	--themeTextColor: #c2c2c2;
	--themeTextSubColor: #fff;
	--themeColor: #ffa300;
	--themeColorSub: #da0d09;
	--themeHover: #fff;
	--sectionHeadingColor: #f2f2f2;
	--tooltipColor: rgba(0, 0, 0, 0.8);
	--panel-color: #3d4758;
	--footer-color: #575757;

	/* Light Mode */
	--light-sectionHeadingColor: #3d4758;
	--light-textColor: #575757;
}

body,
html {
	scroll-behavior: smooth;
}

body {
	background: url('../img/main-background.png') top center no-repeat;
	background-size: cover;
	margin: 0;
	padding: 0;
	border: 0;
}

#load {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	background: #000;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #2b2c2f;
	visibility: hidden;
}

#preloader:before {
	/* background: url('../img/preloader.gif') no-repeat;
	background-size:contain; */
	content: "";
	position: fixed;
	border: 6px solid #fff;
	border-bottom-color: #2b2c2f;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	top: calc(50% - (50px /2));
	left: calc(50% - (50px /2));
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#msgIndicator {
	position: fixed;
	text-align: center;
	width: 275px;
	top: calc(50% + 50px);
	left: calc(50% - (275px / 2));
	z-index: 9999;
	visibility: hidden;
}

.theme-heading {
	font-family: 'GothamCondensed-Bold';
	font-size: 36pt;
	text-transform: uppercase;
	color: var(--themeColorSub);
}

@keyframes heartbeat {
	0% {
		transform: scale(1);
	}

	20% {
		transform: scale(0.9);
	}

	40% {
		transform: scale(0.8);
	}
}


@keyframes pulse {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}

.form-group {
	display: block;
	margin-bottom: 15px;
}

.form-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	/* display: none; */
	display: block;
	cursor: pointer;
}

.form-group label {
	position: relative;
	cursor: pointer;
}

/* .form-group label:before {
	content:'';
	-webkit-appearance: none;
	border-radius: 5px;
	background-color: #33353b;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 9px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
	}
  
  .form-group input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 6px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	} */

#submenu {
	text-align: center;
}

/* --------------------------------
 Theme Switcher
-------------------------------- */
.theme-switch {
	padding-left: 0 !important;
}

.theme-switch td {
	font-family: 'Inter-Regular';
	font-size: 5pt;
	text-transform: uppercase;
	color: #fff;
	vertical-align: middle;
	text-align: center;
}

.form-check-input {
	margin: 0 5px !important;
	font-size: 12pt;
	background-color: #1e1e1e !important;
	border-color: #2d2d2d;
}

.form-check-input:checked {
	background-color: #000;
	border-color: #2d2d2d;
}

.form-switch .form-check-input {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") no-repeat;
	background-position: left center;
}

.form-switch .form-check-input:checked {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") no-repeat;
	background-position: right center;
}

/* --------------------------------
 Main Styles
-------------------------------- */
.main-container {
	height: auto;
	min-height: 60px;
}

.container {
	max-width: 1400px !important;
}

.content-wrap {
	padding: 0px 0 !important;
}

.text-themetext {
	color: var(--themeTextColor) !important;
}

.text-themecolor {
	color: var(--themeColor) !important;
}

.text-themeHover {
	color: var(--themeHover) !important;
}

.text-themecolorSub {
	color: var(--themeColorSub) !important;
}

.bg-themeGradient {
	background: linear-gradient(360deg, rgba(68, 87, 41, 1) 0%, rgba(68, 87, 41, 1) 0%, rgba(78, 117, 32, 1) 100%);
}

.bg-fbGradient {
	background: linear-gradient(180deg, rgba(60, 124, 182, 1) 30%, rgba(41, 64, 128, 1) 100%) !important;
	padding: 12px 10px !important;
}

.tooltip>.tooltip-inner {
	background-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
	border-bottom-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
	border-left-color: var(--tooltipColor);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
	border-right-color: var(--tooltipColor);
}

.animate-faderight-transition {
	animation: fade-in-right 1.5s ease-in-out;
}

.animate-fadeleft-transition {
	animation: fade-in-left 1.5s ease-in-out;
}

/* --------------------------------
 Header Section
-------------------------------- */

.main-header {
	min-height: 127px;
}

.container-header {
	max-width: 1400px;
	padding: 0 12px;
	margin: 0 auto !important;
}

.navbar-dark .navbar-nav .nav-link {
	font-family: 'Inter-Regular';
	font-size: 11pt;
	color: var(--themeTextColor);
}

.navbar-dark .navbar-nav .nav-link:hover {
	color: var(--themeHover);
}

.navbar-nav {
	max-width: 600px;
	width: 600px !important;
	justify-content: space-between;
}

.btn-login {
	background: linear-gradient(180deg, rgba(183, 5, 0, 1) 30%, rgba(120, 4, 1, 1) 100%);
	font-family: 'GothamCondensed-Medium';
	font-size: 13pt;
	text-transform: uppercase;
	padding: 13px 10px;
	color: #fff;
}

.btn-login:hover {
	background: linear-gradient(180deg, rgba(247, 209, 84, 1) 30%, rgba(189, 81, 32, 1) 100%);
	color: #fff;
}

#dropdownUser1 {
	color: #fff;
}

@media (min-width: 992px) {
	#dropdownUser1 {
		color: var(--themeTextColor);
	}
}

.main-logo {
	position: relative;
	top: 7px;
	animation: bounce-in-top 1.5s ease-in-out;
}

.bg-navbar {
	background: url('../img/header-bg.png') repeat-x;
	padding: 20px 0;
}

@media (max-width: 1399.98px) {
	.navbar-brand {
		background: url('../img/logo-mobile.png') center no-repeat;
		background-size: 75%;
		max-width: 245px;
		height: 78px;
		margin-left: -20px;
	}

	.navbar-brand img {
		opacity: 0;
		max-width: 245px;
	}
}

@media (max-width: 1324.98px) {
	.navbar-nav {
		max-width: 700px;
	}
}

@media (max-width: 1299.98px) {
	.navbar-nav {
		max-width: 660px;
	}
}

@media (max-width: 1244.98px) {
	.navbar-nav {
		max-width: 630px;
	}
}

@media (max-width: 991.98px) {
	.main-section {
		background-size: cover;
	}

	.navbar-brand {
		background-size: 60%;
		max-width: 245px;
		height: 78px;
		display: block;
		left: 5px;
	}

	.navbar-brand img {
		opacity: 0;
		max-width: 245px;
	}
}

.main-logo:hover {
	filter: brightness(1);
	cursor: pointer;
}

#serverstatus {
	color: var(--themeTextColor);
}

#serverstatus table {
	border-spacing: 0 5px;
	border-collapse: separate;
}

#serverstatus td {
	font-family: 'Inter-Medium';
	font-size: 9pt;
	padding: 0 15px;
	color: var(--themeTextColor);
}

.value-bg {
	background: #141414;
	width: 110px;
	padding: 2px 15px !important;
	text-align: start;
}

.server-time {
	width: 170px;
	margin: 0 auto;
}

.theme-button {
	padding: 5px;
	background: rgb(137, 20, 13);
	background: linear-gradient(360deg, rgb(149 23 2) 0%, rgb(139 6 4) 0%, rgba(219, 8, 4, 1) 100%);
	display: block;
}

.download-btn {
	font-family: 'Inter-SemiBold';
	font-size: 10pt;
	color: var(--themeTextSubColor);
	text-align: center;
	text-decoration: none;
}

.download-btn:hover {
	filter: brightness(1.2);
	color: var(--themeTextSubColor);
	text-align: center;
	text-decoration: none;
}

.time {
	font-family: 'Inter-Regular';
	color: #fff;
	font-size: 10pt;
}

.online {
	color: #55a90b !important;
}

.offline {
	color: #c80d1a !important;
}

/* --------------------------------
 Header Main
-------------------------------- */
.column-title {
	font-family: 'SportyPro-Regular';
	font-weight: lighter;
	font-size: 11pt;
	color: var(--sectionHeadingColor);
}

.left-col,
.featured-events {
	width: 100%;
	max-width: 1020px;
}

.right-col,
.accountpanel {
	max-width: 330px;
	width: 100%;
}

@media (max-width: 575.98px) {

	.left-col,
	.right-col,
	.accountpanel {
		max-width: 100%;
	}
}

@media (max-width: 767.98px) {

	.left-col,
	.right-col,
	.accountpanel {
		max-width: 540px;
	}
}

@media (max-width: 991.98px) {

	.left-col,
	.right-col,
	.accountpanel {
		max-width: 720px;
	}
}

@media (max-width: 1199.98px) {

	.left-col,
	.right-col,
	.accountpanel {
		max-width: 1020px;
		/* margin-top: 0; */
	}
}

@media (max-width: 1399.98px) {

	.right-col,
	.accountpanel {
		max-width: 1020px;
		margin-top: -70px;
	}
}

.eventbanners {
	max-width: 1020px;
}

.loginpanel {
	background: #181818;
	border: 1px solid #4a4a4a;
	border-radius: 8px;
	font-family: 'Inter-Regular';
	padding: 15px 30px;
	min-height: 270px;
}

.loginpanel img {
	margin-top: -150px;
}

.login_row_main {
	text-align: start;
}

.login_row_main .panel-label {
	font-family: 'TitilliumWebReg';
	color: #fff;
	font-size: 13pt;
	padding: 5px 10px;
}

.login_row {
	max-width: 100%;
}

.input-label {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: var(--panel-color);
	text-transform: uppercase;
	padding-bottom: 5px;
}

.textClass {
	font-family: 'Inter-Medium' !important;
	font-size: 11pt !important;
	background: #f1f1f1;
	border: none !important;
	border-radius: 5px;
	padding: 5px 15px !important;
	width: 100%;
	margin-bottom: 10px;
	text-align: left;
	color: var(--themeTextColor);
}

.rememberMe {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: var(--panel-color);
}

.login_row table {
	width: 100%;
	font-size: 9pt;
}

.loginBtn {
	font-family: 'Inter-Bold';
	width: 100%;
	height: 45px;
	border: 0;
	margin-top: 0px;
	margin-bottom: 10px;
	font-size: 15pt;
	color: var(--themeTextSubColor);
	cursor: pointer;
}

.loginBtn:hover {
	filter: brightness(1.2);
}

.accountAction {
	font-size: 9pt;
	color: var(--panel-color);
	text-align: center;
	width: 100%;
}

.accountAction a {
	color: var(--panel-color);
}

.accountAction a:hover {
	color: var(--themeHover);
}

.logged {
	margin-top: 20px;
	font-size: 13pt;
}


/* --------------------------------
 Owl Carousel Customization
-------------------------------- */
.owl-carousel .owl-nav {
	overflow: hidden;
	height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #2caae1;
}

.owl-theme .owl-dots {
	margin: 0 auto !important;
}

.owl-carousel .item {
	text-align: center;
	border: 1px solid #4a4a4a;
	border-radius: 8px;
}

.owl-carousel .nav-btn {
	height: 25px;
	position: absolute;
	width: 26px;
	cursor: pointer;
	top: 43% !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
	pointer-events: none;
	opacity: 0.2;
}

.owl-carousel .prev-slide {
	background: url('../img/nav-icon.png') no-repeat scroll 0 0;
	height: 30px;
	width: 32px;
	left: 0px;
}

.owl-carousel .next-slide {
	background: url('../img/nav-icon.png') no-repeat scroll -33px 0;
	height: 30px;
	width: 32px;
	right: 0px;
}

.owl-carousel .prev-slide:hover {
	background-position: 0px -34px;
}

.owl-carousel .next-slide:hover {
	background-position: -33px -34px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 16px;
	height: 9px;
	margin: 5px 2px;
	background: #536479;
	border-radius: 3px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #97a3b2;
}

/* --------------------------------
 Main Content Column
-------------------------------- */
.maincontent {
	background: url('../img/welcome-object.png') no-repeat 480px -35px #1e1e1e;
	background-size: cover;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	padding: 30px 45px;
	margin-top: 18px !important;
}

@media (max-width: 767.98px) {
	.maincontent {
		padding: 30px 10px;
	}
}

.maincontent h5 {
	font-family: 'Inter-Bold';
	font-size: 20pt;
	color: #f2f2f2;
	margin-bottom: 30px;
}

.youtube-video img {
	width: 100%;
}

.server-desc {
	font-family: 'Inter-Regular';
	font-size: 11pt;
	color: var(--themeTextColor);
	text-align: justify;
	padding-right: 20px;
}

.btn-readmore {
	font-family: 'Inter-Medium';
	font-size: 8pt;
	color: #f2f2f2 !important;
	padding: 5px 20px;
}

.btn-readmore:hover {
	color: #000 !important;
}

hr {
	background-color: darkgray !important;
}

/* --------------------------------
 Hall of Fame Column
-------------------------------- */

.hall-of-fame {
	background: url('../img/famer-object.png') no-repeat -290px -245px #1e1e1e;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	padding: 34px 45px 0 45px;
	margin: 30px 0 70px 0;
}

@media (max-width: 767.98px) {
	.hall-of-fame {
		padding: 30px 10px;
	}
}

.fame-render {
	height: 400px;
	width: 550px;
	object-fit: none;
	object-position: 0 0;
	position: relative;
	left: -225px;
}

.fame-char {
	width: 265px;
	height: 420px;
	object-fit: none;
	object-position: -17px 0;
	margin-top: 20px;
}

.pvp-ladder {
	min-width: 260px;
	margin-top: 20px;
	height: fit-content;
}

.text-pvp {
	font-family: 'SportyPro-Regular';
	font-size: 9pt;
	color: var(--themeColorSub);
	margin: 0 !important;
}

.text-rank {
	font-family: 'SportyPro-Regular';
	font-size: 8pt;
	color: var(--themeColorSub);
}

.pvp-name {
	font-family: 'Gotham-Book';
	font-size: 8pt;
}

.pvp-score {
	font-family: 'Inter-Regular';
	font-size: 8pt;
	color: #8c8c8c;
}


.pvp-ranking {
	font-family: 'Inter-Bold';
	font-size: 9pt;
	width: 100%;
}

.pvp-ranking td {
	border-bottom: 1px solid #b7b7b7;
	line-height: 12pt;
}

.pvp-ranking tr:last-child td {
	border: 0;
}

ul#pills-tab {
	font-family: 'Inter-Regular';
	font-size: 7pt;
}

ul#pills-tab li .nav-link {
	padding: 5px 0px 5px 20px;
}

.pvp-ladder .nav-pills .nav-link {
	color: #626262;
}

.pvp-ladder .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background: transparent;
	color: var(--themeColorSub);
}

.fame-title {
	font-family: 'Inter-Bold' !important;
	font-size: 18pt !important;
	color: var(--sectionHeadingColor);
}

.guild-container {
	background: url(../img/emp.png) no-repeat top center;
	background-size: cover;
}

.gotm img.agitlord_emblem {
	margin-left: 47px;
	margin-top: 55px;
	margin-bottom: 100px;
}

.agitlord_heading {
	margin-top: -35px;
}

.btn-castleowners {
	font-family: 'SportyPro-Bold';
	font-size: 9pt;
	color: #fff;
	background: linear-gradient(360deg, rgb(149 23 2) 0%, rgb(139 6 4) 0%, rgba(219, 8, 4, 1) 100%);
	padding: 4px 12px;
}

.btn-castleowners:hover {
	color: #fff;
	opacity: 0.8;
}

.agitlord-title {
	font-family: 'Inter-Regular';
	font-size: 8.5pt;
	color: #e9e9e9;
}

.agitlord-guildname,
.agitlord-guildmaster {
	font-family: 'Inter-Bold';
	font-size: 10pt;
	color: #fff;
}

.empires {
	margin: 20px 0 10px 5px;
}

.guild-flags {
	margin: 0;
	overflow: hidden;
}

.gotm {
	background: url(../img/gotm.png) no-repeat;
	/*width: 391px;
	height: 175px; */
}

.flag {
	background: url(../img/flag.png) no-repeat;
	height: 70px;
	padding: 20px 0 0 18px;
	/* float: left; */
	max-width: 60px;
	margin: 0 auto 20px auto;
}

.flag img {
	max-width: 24px !important;
	max-height: 24px !important;
}

.flag-container {
	width: 60px;
}

.text-tourna {
	font-family: 'SportyPro-Regular';
	font-size: 9pt;
	width: 245px;
}

.tourna_1v1,
.tourna_7v7 {
	border: 2px solid var(--themeTextSubColor);
	max-width: 300px;
}

.tourna-team {
	font-family: 'Inter-Bold';
	font-size: 10pt;
}

.tourna1v1-entry {
	padding: 0 20px;
	width: 300px;
	max-width: 300px;
}

.border-1v1 {
	border-color: var(--themeTextSubColor) !important;
}

.tourna1v1_thumbnail {
	background: #b5b5b5;
	border-radius: 50%;
	height: 46px;
	width: 46px;
	object-fit: none;
	object-position: center -50px;
}

.tourna1v1-title {
	font-family: 'Gotham-Bold';
	font-size: 9pt;
}

.tourna1v1-winner {
	font-family: 'Gotham-Book';
	font-size: 9pt;
}

.team-photo {
	max-width: 235px;
}


/* --------------------------------
 Footer Section
-------------------------------- */

#footer-section {
	background: url(../img/footer-bg.png) top center no-repeat;
	background-size: cover;
	padding-top: 45px;
	padding-bottom: 45px;
}

.footer-links li a {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: var(--footer-color);
	padding: 0 0.5rem;
}

.footer-links li a:hover {
	color: var(--themeHover);
}

.footer-links li {
	border-right: 1px solid #505050;
}

.footer-links li:last-child {
	border: 0;
}

.footer-copyrights {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	line-height: 10pt;
	color: var(--footer-color);
}

.credits {
	max-width: 500px;
}

@media (max-width: 768px) {
	.footer-links li {
		border: 0;
		padding: .5rem;
	}
}

@media (min-width: 768px) {
	.dev-logo {
		margin-left: -20px;
	}
}

h4.social {
	font-family: 'SportyPro-Regular';
	font-size: 13pt;
	color: var(--footer-color);
	margin-bottom: 15px;
}

.social-links .social-icons {
	display: flex;
	justify-content: end;
}

.social-links h6 {
	font-family: 'SportyPro-Regular';
	font-size: 10pt;
	margin-left: auto;
}

.social-fb {
	background: url('../img/fb-icon.png') no-repeat;
	width: 32px;
	height: 32px;
	margin: 0 0 0 10px;
}

.social-fb:hover {
	background: url('../img/fb-icon-hover.png') no-repeat;
}

.social-discord {
	background: url('../img/discord-icon.png') no-repeat;
	width: 33px;
	height: 33px;
	margin: 0 0 0 10px;
}

.social-discord:hover {
	background: url('../img/discord-icon-hover.png') no-repeat;
}

.social-tiktok {
	background: url('../img/tiktok-icon.png') no-repeat;
	width: 33px;
	height: 33px;
	margin: 0 0 0 10px;
}

.social-tiktok:hover {
	background: url('../img/tiktok-icon-hover.png') no-repeat;
}

/* --------------------------------
 Other Pages
-------------------------------- */

.btn-apk {
	background: url(../img/dl-apk.png) no-repeat;
	width: 231px;
	height: 49px;
}

.btn-apk:hover {
	background: url(../img/dl-apk-hover.png) no-repeat;
}

.btn-custom {
	background-color: var(--panel-color);
	color: var(--themeColor) !important;
}

.btn-custom:hover {
	color: var(--themeHover) !important;
}

.downloads-page p {
	font-family: 'Inter-Medium';
	font-size: 11pt;
}

.downloads-container {
	border: 2px solid #4f7520;
	border-radius: 15px;
}

.downloads-container p {
	font-family: 'Inter-Medium';
	font-size: 9pt;
}

.downloads-container a:hover {
	opacity: 0.8;
}

#downloadpage .table tr td {
	vertical-align: middle !important;
}

#download-wrap,
#misc-wrap {
	min-height: 26rem;
	position: relative;
}

#download-wrap a.btn-custom svg,
#misc-wrap a.btn-custom svg {
	font-size: 2rem;
}

#download-wrap::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	background-image: url('../img/pages/dl-render.png?v1');
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
	top: 0;
	right: 0;
}

#misc-wrap::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	background-image: url('../img/pages/misc-render.png?v1');
	background-position: top left;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
	top: 0;
	left: 0;
}

@media (max-width: 992px) {

	#download-wrap::after,
	#misc-wrap::after {
		background-position: center !important;
		opacity: 0.25 !important;
	}
}

#donate-icon-wrap {
	column-gap: 1rem;
}

a.donate-icon {
	height: 8rem;
	width: 8rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	border-radius: 4rem;
	background-color: #fff;
	transition: filter calc(var(--animDuration) / 2) ease-in-out !important;
}


a.donate-icon#paypal {
	background-image: url('../img/icon/id_paypal.webp');
}

a.donate-icon#gcash {
	background-image: url('../img/icon/id_gcash.webp');
}

a.donate-icon#maya {
	background-image: url('../img/icon/id_maya.webp');
}

a.donate-icon#bank {
	background-image: url('../img/icon/id_bank.webp');
}

#donate-wrap .donate-group {
	min-height: 4rem;
	position: relative;
	padding: 1rem 1.5rem;
	border-radius: 0.25rem;
	background: rgb(28 27 25 / 60%);
	box-shadow: inset 0 0 0 1px rgb(77 67 67 / 13%), inset 0 0 0 2px rgb(51 50 50 / 50%);
	margin: 0.25rem;
}


.conversion img {
	width: 24px !important;
	height: 24px !important;
}

.conversion-rate .bg-primary.light,
.conversion-rate .bg-success.light {
	color: #fff !important;
}

.font-header-alt.header-title {
	font-family: 'SportyPro-Regular';
	font-size: 13pt;
}

.modal-content {
	background: #222;
	color: var(--themeTextColor);
	background-image: url('../img/logo-quality.png');
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 43%;
}

.modal-content .modal-header .btn-close {
	filter: invert(1);
}

.modal-content .modal-header {
	border-bottom: 1px solid var(--footer-color);
}

.modal-content .modal-title {
	font-family: 'SportyPro-Regular';
}

.modal-content code {
	color: var(--themeColor);
	font-size: 1rem;
}

.modal-content .list-group-item {
	background: rgba(0, 0, 0, 0.3);
	color: var(--themeTextColor);
}



.heading-container {
	background: linear-gradient(180deg, rgba(106, 143, 56, 1) 30%, rgba(79, 117, 32, 1) 100%);
	font-family: 'Inter-Bold';
	font-size: 12pt !important;
	padding: 5px 20px;
	border-radius: 12px 12px 0 0;
}

.vote-render {
	text-align: right;
}

.vote-render img {
	position: relative;
	right: -80px;
	top: 235px;
}

.vote-page th,
.vote-page td,
.vote-stats td {
	font-family: 'Inter-Medium';
	font-size: 9pt !important;
	padding: 10px 20px;
	border: 3px solid #fff;
	text-align: center;
}

.bg-themeGradient a {
	color: #fff !important;
	text-decoration: none;
}

.table-label {
	padding: 5px 5px !important;
}

.table-value {
	padding: 5px 20px !important;
}

table.vote-page {
	max-width: 190px !important;
}

.vote-page th {
	font-family: 'SportyPro-Bold';
	font-size: 11pt !important;
}

.bg-votelabel {
	background: #2b2b2b !important;
}

.bg-black {
	background: #1d1d1d !important;
}

.vote-warning p {
	font-size: 8pt !important;
	font-weight: bold;
}

/* --------------------------------
 Flux Pages Design Styles
-------------------------------- */

#submenu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

#submenu a {
	color: var(--themeColor);
}

#submenu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}


.admin-menu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

.admin-menu a {
	color: var(--themeColor);
}

.admin-menu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}



.admin-menu a:after {
	content: ' / ';
	color: var(--themeTextColor);
	text-decoration: none;
}



.toggler a {
	color: var(--themeColor);
}



.pages .page-num {
	color: var(--themeColor);
}



.pages .current-page {
	color: #cc9808 !important;
	font-weight: bold;
}



.pages .page-prev,
.pages .page-next {
	color: var(--themeTextColor);
}

.horizontal-table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table>.table-bordered {
	border: 0;
}


.vertical-table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table>.table-bordered {
	border: 0;
}

.global-container {
	font-family: 'Inter-Regular';
	color: var(--themeTextColor);
	font-size: 9pt;
	padding: 45px;
	/* background: url(../img/pages-bg.png) no-repeat center -100px #1a1917; */
	background-size: cover;
	border-radius: 7px;
	min-height: calc(100vh - (127px + 222px));
}

@media (max-width: 575.98px) {
	.global-container {
		padding: 80px 15px;
	}
}

@media (min-width: 576px) {
	.global-container {
		padding: 80px calc((100vw - 540px) /2);
	}
}

@media (min-width: 768px) {
	.global-container {
		padding: 80px calc((100vw - 720px) /2);
	}
}

@media (min-width: 992px) {
	.global-container {
		padding: 80px calc((100vw - 960px) /2);
	}
}

@media (min-width: 1200px) {
	.global-container {
		padding: 80px calc((100vw - 980px) /2);
	}
}

@media (min-width: 1400px) {
	.global-container {
		padding: 80px calc((100vw - 980px) /2);
	}
}

.global-container table {
	font-family: 'Inter-Regular';
	color: var(--themeTextColor);
	font-size: 9pt;
}

.global-container h2,
h3 {
	font-size: 20pt;
	text-decoration-color: var(--themeTextColor);
	width: unset;
	margin: 20px 0px;
	padding: 5px 0;
	font-family: 'Inter-Bold';
	color: var(--themeTextColor);
}

.global-container p {
	font-family: 'Inter-Medium';
	font-size: 10pt;
}

.customborder-bottom {
	padding-bottom: 15px;
	border-bottom: 2px solid var(--themeTextColor);
}

.fs-medium {
	font-size: 90% !important;
}

.fs-small {
	font-size: 75% !important;
}

.security-code {
	background-color: #b7b7b7;
	height: auto;
	border: #8e8e8e;
}

.reg-label {
	font-family: 'Inter-Bold' !important;
	font-size: 9pt !important;
	color: var(--themeTextColor) !important;
}

.birthdate select {
	background-color: #212529 !important;
	color: #fff !important;
	padding: 0.4rem 1rem !important;
	border: 1px solid #4a4a4a !important;
	border-radius: 0.25rem;
	-moz-box-shadow: inset 0 0 7px #141414;
	-webkit-box-shadow: inset 0 0 7px #141414;
	box-shadow: inset 0 0 7px #141414;
}

h3 {
	font-size: 30pt;
}

.global-container a {
	color: var(--themeColor);
}


.global-container:empty {
	display: none;
}



.horizontal-table td {
	padding: 5px 10px;
	background: transparent;
}



.horizontal-table th,
.horizontal-table td {
	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}



.horizontal-table th {
	padding: 5px 10px;
	background-color: transparent;
}



.vertical-table td {
	padding: 5px 10px;
	background: transparent;
}

.woe-table {
	background: transparent !important;
}

.woe-table .time {
	color: var(--themeColor);
}

.important {
	color: var(--themeColor);
}

.request {
	background: transparent !important;
}

.vertical-table th,
.vertical-table td {

	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}


.vertical-table th {
	padding: 5px 10px;
	background-color: transparent;
}


.generic-form {
	border: 1px solid var(--themeColor);
	background: none;
}


.generic-form-table td p {
	color: var(--themeColor);
}

.search-form label,
.search-form2 label {
	color: var(--themeColor);
}


.sortable {
	color: #38a6e8;
	text-decoration: underline;
}


.sortable:hover {
	color: #fff;
}


#pagemenu {
	color: var(--themeTextColor);
}


#pagemenu a {
	color: var(--themeColor);
}

.character-stats .stat-name {
	color: var(--themeColor);
}

.character-stats .stat-value {
	color: var(--themeTextColor);
}


.generic-form-table th label,
.generic-form-table td div,
.horizontal-table td,
.horizontal-table th,
.vertical-table th,
.vertical-table td {
	color: var(--themeTextColor)
}

.global-container .table-striped>tbody>tr:nth-of-type(odd) {
	background: rgba(0, 0, 0, 0.5);
	color: var(--themeTextColor);
}

/* --------------------------------
 Dropdown Restyle
-------------------------------- */
.dropdown-menu {
	background-color: #1e1e1e;
}

.dropdown-menu li a {
	text-decoration: none;
}

/* --------------------------------
 Extra Restyle
-------------------------------- */
.table>:not(caption)>*>* {
	border-bottom-width: 0;
}

.alert-danger {
	color: #ea868f;
	background-color: #2c0b0e;
	border-color: #842029;
}

.alert-success {
	color: #75b798;
	background-color: #051b11;
	border-color: #0f5132;
}

.alert-light {
	color: #f8f9fa;
	background-color: #343a40;
	border-color: #495057;
}

/* --------------------------------
 Right Sidebar Nav
-------------------------------- */
.sidebar-links ul {
	margin: 0;
	padding: 0;
}

.sidebar-links ul li {
	list-style: none;
}

.sidebar-links ul li:nth-of-type(1) a {
	background: url(../img/btn-register.png?v1) no-repeat;
	background-size: contain;
	width: 330px;
	height: 90px;
	text-decoration: none;
	display: block;
	margin: 0 auto;
}

.sidebar-links ul li:nth-of-type(2) a {
	background: url(../img/btn-download.png?v1) no-repeat;
	background-size: contain;
	width: 330px;
	height: 90px;
	text-decoration: none;
	display: block;
	margin: 0 auto;
}

.sidebar-links ul li:nth-of-type(3) a {
	background: url(../img/btn-streamer.png?v1) no-repeat;
	background-size: contain;
	width: 330px;
	height: 90px;
	text-decoration: none;
	display: block;
	margin: 0 auto;
}

.sidebar-links ul li:nth-of-type(1) a:hover {
	background: url(../img/btn-register-hover.png) no-repeat;
	background-size: contain;
}

.sidebar-links ul li:nth-of-type(2) a:hover {
	background: url(../img/btn-download-hover.png) no-repeat;
	background-size: contain;
}

.sidebar-links ul li:nth-of-type(3) a:hover {
	background: url(../img/btn-streamer-hover.png) no-repeat;
	background-size: contain;
}

/* --------------------------------
 Quick Link Sidebar Nav
-------------------------------- */
.quick-links ul {
	padding: 20px 15px;
	background: #181818;
	border-radius: 7px;
	border: 1px solid #4a4a4a;
}

.quick-links ul hr {
	margin: 0;
}

.quick-links ul li {
	text-decoration: none;
	list-style: none;
	border-bottom: 1px solid;
}

.quick-links ul li:last-of-type {
	border: none;
}

.quick-links ul li a {
	font-family: 'Inter-Medium';
	font-size: 15pt;
	color: #f2f2f2;
	padding: 10px 0px 10px 100px;
	text-decoration: none;
	display: block;
	height: 62px;
}

.quick-links ul li:nth-of-type(1) a {
	background: url(../img/review.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(2) a {
	background: url(../img/newbie.png) no-repeat;
	background-position: 33px 10px;
}

.quick-links ul li:nth-of-type(3) a {
	background: url(../img/quest.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(4) a {
	background: url(../img/vote.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(5) a {
	background: url(../img/staff.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(6) a {
	background: url(../img/woe.png) no-repeat;
	background-position: 30px 10px;
}

.quick-links ul li:nth-of-type(1) a:hover {
	background: url(../img/review_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(2) a:hover {
	background: url(../img/newbie_h.png) no-repeat 33px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(3) a:hover {
	background: url(../img/quest_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(4) a:hover {
	background: url(../img/vote_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(5) a:hover {
	background: url(../img/staff_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

.quick-links ul li:nth-of-type(6) a:hover {
	background: url(../img/woe_h.png) no-repeat 30px 10px, url(../img/quick-links-hover.png) no-repeat 20px center;
}

/* --------------------------------
 Light Mode
-------------------------------- */
body.light {
	background: url('../img/main-background-light.png') no-repeat top center;
	background-size: cover;
}

.bg-navbar.light {
	background: url(../img/header-bg-light.png) repeat-x !important;
}

.column-title.light {
	color: var(--light-sectionHeadingColor) !important;
}

.item.light {
	border: none !important;
}

.loginpanel.light {
	background: url(../img/light-container-bg.png) no-repeat !important;
	background-size: cover !important;
	border: none !important;
}

.maincontent.light {
	background: url('../img/welcome-object.png') no-repeat 480px -35px, url(../img/light-container-bg.png) no-repeat !important;
	background-size: auto, cover !important;
	border: none !important;
}

.maincontent.light h5.light,
.fame-title.light,
.pvp-name.light {
	color: var(--light-sectionHeadingColor) !important;
}

.btn-readmore.light {
	color: #787e87 !important;
	border-color: #787e87 !important;
	border-width: 2px;
}

.btn-readmore.light:hover {
	color: #55595f !important;
	border-color: #55595f !important;
	background: none;
}

hr.light {
	background-color: #323232 !important;
}

.server-desc.light,
.agitlord-title.light,
.agitlord-guildname.light,
.agitlord-guildmaster.light {
	color: var(--light-textColor);
}

.hall-of-fame.light {
	background: url('../img/famer-object.png') no-repeat -290px -245px, url(../img/light-container-bg.png) no-repeat !important;
	background-size: auto, cover !important;
	border: none !important;
}

.footer.light {
	background: url(../img/light-footer-bg.png) top center no-repeat !important;
	background-size: cover !important;
}

.global-container.light table {
	color: var(--light-textColor) !important;
}

.global-container.light h2,
.global-container.light h3 {
	color: var(--light-sectionHeadingColor) !important;
}

.global-container.light {
	color: var(--light-textColor) !important;
}

.bg-themeGradient.light {
	background: linear-gradient(360deg, rgb(149 23 2) 0%, rgb(139 6 4) 0%, rgba(219, 8, 4, 1) 100%);
	color: var(--sectionHeadingColor) !important
}

.generic-form-table.light th label,
.generic-form-table.light td div,
.horizontal-table.light td,
.horizontal-table.light th,
.vertical-table.light th,
.vertical-table.light td,
.generic-form-table.light td p,
#submenu.light,
.reg-label.light {
	color: var(--light-textColor) !important;
}

.global-container.light .table-striped>tbody>tr:nth-of-type(odd) {
	/* background: rgba(0, 0, 0, 0.05); */
	color: var(--themeTextColor);
}

#donate-wrap .donate-group.light {
	min-height: 4rem;
	position: relative;
	padding: 1rem 1.5rem;
	border-radius: 0.25rem;
	background: rgb(249 249 249 / 60%);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.125),
		inset 0 0 0 2px rgba(255, 255, 255, 0.5);
	margin: 0.25rem;
}


.modal-content.light {
	background: var(--sectionHeadingColor);
	color: var(--light-textColor);
	background-image: url('../img/logo-quality.png');
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 40%;
}

.modal-content.light .modal-header .btn-close {
	filter: invert(0);
}

.modal-content .modal-header {
	border-bottom: 1px solid var(--footer-color);
}

.modal-content .modal-title {
	font-family: 'SportyPro-Regular';
}

.modal-content code {
	color: var(--themeColor);
	font-size: 1rem;
}

.modal-content.light .list-group-item {
	background: rgba(0, 0, 0, 0.1);
	color: var(--light-textColor);
}

@media (max-width: 991.98px) {

	.modal-content.light,
	.modal-content {
		background-image: none;
	}
}

/* --------------------------------
 Promo Block Styles (Themed)
-------------------------------- */
.promo-hero {
	background: linear-gradient(180deg, rgba(183, 5, 0, 1) 30%, rgba(120, 4, 1, 1) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-bg-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
	animation: pulse-glow 5s infinite ease-in-out;
}

@keyframes pulse-glow {
	0% {
		transform: scale(0.9);
		opacity: 0.3;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.6;
	}

	100% {
		transform: scale(0.9);
		opacity: 0.3;
	}
}

.promo-card {
	background: #1e1e1e;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	overflow: hidden;
}

.promo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
	border-color: var(--themeColor);
}

body.dark-mode .promo-card {
	background: #1e1e1e;
	color: var(--themeTextColor);
}

.promo-card-premium {
	background: linear-gradient(145deg, #141414 0%, #1e1e1e 100%);
	border: 1px solid var(--themeColorSub);
	color: #fff;
}

.text-warning {
	color: var(--themeColor) !important;
}

.promo-list li {
	padding: 8px 0;
	border-bottom: 1px solid #2d2d2d;
	color: var(--themeTextColor);
}

.promo-list li:last-child {
	border-bottom: none;
}

.promo-card-premium .promo-list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ls-1 {
	letter-spacing: 1px;
}

.promo-card .card-title {
	font-family: 'Inter-Bold';
	color: #fff;
}

.promo-card .badge {
	font-family: 'SportyPro-Regular';
	font-size: 0.9em;
}

.promo-hero h3 {
	font-family: 'GothamCondensed-Bold';
	text-transform: uppercase;
}

/* --------------------------------
 Info Page Styles
-------------------------------- */
.info-card {
	background: #1e1e1e;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-theme {
	color: var(--themeColor) !important;
}

.rate-item {
	text-align: center;
	padding: 0 15px;
}

.rate-item span {
	line-height: 1;
	text-shadow: 0 0 10px rgba(255, 163, 0, 0.3);
}

.feature-box {
	transition: all 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-5px);
	border-color: var(--themeColor) !important;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cmd-list li {
	padding: 4px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cmd-list li:last-child {
	border-bottom: none;
}

.cmd-list code {
	background: rgba(255, 255, 255, 0.1);
	padding: 2px 5px;
	border-radius: 3px;
	margin-right: 5px;
}

/* --------------------------------
 Dark Mode Modal Styles
-------------------------------- */
.modal-content {
	background-color: #1e1e1e;
	color: #c2c2c2;
	border: 1px solid #4a4a4a;
}

.modal-header {
	border-bottom: 1px solid #2d2d2d;
}

.modal-header .btn-close {
	filter: invert(1);
}

.modal-body code {
	color: var(--themeColor);
	background: rgba(255, 255, 255, 0.1);
	padding: 2px 5px;
	border-radius: 3px;
}

.modal-body .list-group-item {
	background-color: transparent;
	border-color: #2d2d2d;
	color: #ccc;
}

/* --------------------------------
 Modal Z-Index Fix
-------------------------------- */
.modal-backdrop {
	z-index: 1040 !important;
}

.modal-content {
	z-index: 1100 !important;
}

.modal {
	z-index: 1050 !important;
}

/* --------------------------------
 Payment Accordion Styles
-------------------------------- */
.payment-accordion .accordion-item {
	background-color: transparent;
	border: none;
	margin-bottom: 1rem;
}

.payment-accordion .accordion-button {
	background-color: #1e1e1e;
	/* Match .feature-box */
	color: #fff;
	border: 1px solid #4a4a4a;
	border-radius: 7px !important;
	box-shadow: none;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.payment-accordion .accordion-button:not(.collapsed) {
	background-color: #252525;
	color: var(--themeColor);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	border-color: var(--themeColor);
}

.payment-accordion .accordion-button::after {
	filter: invert(1);
	/* Make default arrow white */
}

.payment-accordion .accordion-button:not(.collapsed)::after {
	filter: invert(1) drop-shadow(0 0 2px var(--themeColor));
	/* Theme colored arrow */
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	/* Simplify: just rely on filter for now or use standard arrow */
}

.payment-accordion .accordion-collapse {
	border: 1px solid #4a4a4a;
	border-top: none;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	background-color: #181818;
	/* Slightly darker for content */
	margin-top: -5px;
	/* overlap slightly to look connected */
}

.payment-accordion .accordion-body {
	padding: 2rem;
	color: #ccc;
}

/* Fix rounded corners when expanded */
.payment-accordion .accordion-button:not(.collapsed) {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* --------------------------------
 Modern Open Layout (No Box)
-------------------------------- */
.modern-section {
	background: transparent;
	border: none;
	padding: 20px 0;
	margin-top: 20px;
}

.modern-section h5 {
	font-family: 'Inter-Bold';
	font-size: 24pt;
	color: var(--sectionHeadingColor);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	margin-bottom: 25px;
}

.modern-list {
	width: 100%;
}

.modern-list tr {
	transition: background 0.2s;
}

.modern-list tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

.modern-list td {
	padding: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #e0e0e0;
	font-family: 'Inter-Medium';
	font-size: 10pt;
}

.modern-list tr:last-child td {
	border-bottom: none;
}

.modern-list .rank-num {
	color: var(--themeColor);
	font-family: 'GothamCondensed-Bold';
	font-size: 12pt;
	width: 40px;
	text-align: center;
}

.modern-list .char-name {
	color: #fff;
	font-family: 'Gotham-Bold';
	font-size: 11pt;
}

.modern-list .stat-val {
	color: #aaa;
	text-align: right;
	font-family: 'Inter-Bold';
}

/* Enhancements for Welcome Section */
.welcome-text {
	color: #e0e0e0;
	font-size: 11pt;
	line-height: 1.6;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Transparent adjustments for existing elements */
.nav-pills .nav-link {
	color: #aaa;
}

.nav-pills .nav-link.active {
	background-color: transparent;
	color: var(--themeColor);
	font-weight: bold;
	border-bottom: 2px solid var(--themeColor);
	border-radius: 0;
}