@font-face {
    font-family: 'Inter-Bold';
    src: url('../webfonts/inter/Inter-Bold.woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SportyPro-Regular';
    src: url('../webfonts/sportypro/SportyPro-Regular.otf');
}
@font-face {
    font-family: 'Inter-ExtraBold';
    src: url('../webfonts/inter/Inter-ExtraBold.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-ExtraLight';
    src: url('../webfonts/inter/Inter-ExtraLight.woff'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Light';
    src: url('../webfonts/inter/Inter-Light.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../webfonts/inter/Inter-Medium.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('../webfonts/inter/Inter-Regular.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../webfonts/inter/Inter-SemiBold.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Thin';
    src: url('../webfonts/inter/Inter-Thin.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../webfonts/gotham/GothamBook.woff');
}

@font-face {
    font-family: 'SportyPro-Bold';
    src: url('../webfonts/sportypro/SportyPro-Bold.otf');
}

:root {
    --themeTextColor: #c2c2c2;
    --themeTextSubColor: #fff;
    --themeColor: #4e7520;
    --themeColorSub: #ff8f00;
    --themeHover: #fff;
    --tooltipColor: rgba(0, 0, 0, 0.8);
    /* Bootstrap Primary Colors */
    --primary: #282724;
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #343a40;

    /* Optional extended palette */
    --white: #ffffff;
    --muted: #6c757d;
    --gray: #adb5bd;
    --gray-dark: #343a40;

    /* Typography */
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --font-size-base: 1rem;
    --line-height-base: 1.5;

    /* Spacing and border radius */
    --spacer: 1rem;
    --border-radius: 0.25rem;
}

body {
    background: url(../img/main-background.png) no-repeat, #9e0000;
    background-size: cover;
    background-position: top center;
    font-family: var(--font-family-sans-serif);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--primary);
    color: var(--dark);
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
}

/* --------------------------------
 Header Section
-------------------------------- */

.main-header {
    min-height: 127px;
    background: url('../img/header-bg.png') repeat-x;
    background-size: cover;
    padding: 20px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    border-bottom: 2px solid #181818;
    z-index: 1000;
    position: relative;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(35,35,35,0.3) 0%, rgba(35,35,35,0.8) 40%, rgba(20,20,20,0.95) 100%);
    z-index: -1;
}

.main-header .container-fluid {
    max-width: 1400px;
    padding: 0 12px;
    margin: 0 auto !important;
}

.logo-section {
    text-align: left;
    position: relative;
}

.main-logo {
    position: relative;
    top: 7px;
    animation: bounce-in-top 1.5s ease-in-out;
    max-height: 80px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.main-logo:hover {
    filter: brightness(1);
    cursor: pointer;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    width: 600px !important;
}

.main-nav .nav-link {
    font-family: 'Montserrat Regular', Arial, sans-serif;
    font-size: 11pt;
    color: #e0e0e0;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav .nav-link:hover, .main-nav .nav-link:focus {
    color: #fff;
    text-decoration: none;
}

.server-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#serverstatus {
    color: #e0e0e0;
}

#serverstatus table {
    border-spacing: 0 5px;
    border-collapse: separate;
}

#serverstatus td {
    font-family: 'Montserrat Regular', Arial, sans-serif;
    font-size: 9pt;
    padding: 0 15px;
    color: #e0e0e0;
}

.value-bg {
    background: #141414;
    width: 110px;
    padding: 2px 15px !important;
    text-align: start;
    border-radius: 2px;
    color: #fff;
    font-weight: bold;
}

.online {
    color: #28a745 !important;
    font-weight: bold;
}

.offline {
    color: #dc3545 !important;
    font-weight: bold;
}

.download-time-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 155px;
    margin: 0 auto;
}

.theme-button {
    padding: 5px;
    background: rgb(68,87,41);
    background: linear-gradient(360deg, rgba(68,87,41,1) 0%, rgba(68,87,41,1) 0%, rgba(78,117,32,1) 100%);
    display: block;
}

.download-btn {
    font-family: 'Montserrat Bold', Arial, sans-serif;
    font-size: 10pt;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 8px rgba(40,167,69,0.18);
    transition: filter 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.download-btn:hover {
    filter: brightness(1.2);
    color: #fff;
    text-decoration: none;
}

.server-time-block {
    font-family: 'Montserrat Regular', Arial, sans-serif;
    color: #fff;
    font-size: 10.5pt;
    text-align: center;
    white-space: nowrap;
}

.server-time-block .font-weight-bold {
    color: #fff;
    font-weight: bold;
}

@media (max-width: 1324.98px) {
    .main-nav {
        max-width: 700px;
    }
}

@media (max-width: 1299.98px) {
    .main-nav {
        max-width: 660px;
    }
}

@media (max-width: 1244.98px) {
    .main-nav {
        max-width: 630px;
    }
}

@media (max-width: 991.98px) {
    .main-header {
        padding: 10px 0;
    }
    .main-nav {
        gap: 1rem;
        width: auto !important;
        max-width: none;
    }
    .main-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.2rem 0.4rem;
    }
    .osro-logo-text {
        font-size: 1.8rem;
    }
    .server-section {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 767px) {
    .main-header .row {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    .osro-logo-text {
        font-size: 1.5rem;
    }
    .osro-logo-subtitle {
        font-size: 0.65rem;
    }
}

.bg-navbar {
    background: #232323 !important;
    border-bottom: 2px solid #181818;
}
.navbar-brand img {
    height: 40px;
}
.navbar-nav .nav-link {
    color: #d1d1d1 !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 1.2rem;
    transition: color 0.2s, background 0.2s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    color: #fff !important;
    background: #282724;
    border-radius: 3px;
}
.server-status {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.2;
    min-width: 120px;
}
.server-status .text-success {
    color: #7fff7f !important;
    font-weight: bold;
}
.btn-success.btn-sm {
    background: linear-gradient(90deg, #7fff7f 0%, #28a745 100%);
    color: #232323;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 1.1rem;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(40,167,69,0.15);
    transition: background 0.2s, color 0.2s;
}
.btn-success.btn-sm:hover, .btn-success.btn-sm:focus {
    background: linear-gradient(90deg, #28a745 0%, #7fff7f 100%);
    color: #fff;
}
.server-time {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-left: 0.5rem;
    font-family: 'Montserrat Regular', Arial, sans-serif;
}

/* --------------------------------
 Mobile Sidebar Menu
-------------------------------- */

.navbar-toggler {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.navbar-toggler:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
    z-index: 1050;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-sidebar.show {
    left: 0;
}

.mobile-sidebar-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: #e0e0e0;
    font-family: 'Montserrat Bold', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    text-decoration: none;
    transform: translateX(5px);
}

.mobile-server-info h6 {
    color: #fff;
    font-family: 'Montserrat Bold', Arial, sans-serif;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

#mobileServerstatus table {
    border-spacing: 0 8px;
    border-collapse: separate;
    width: 100%;
}

#mobileServerstatus td {
  font-family: 'Montserrat Regular', Arial, sans-serif;
  font-size: 0.8rem;
  padding: 0.rem;
  color: #e0e0e0;
}

#mobileServerstatus .value-bg {
    background: #141414;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    min-width: 80px;
}

.mobile-download-section {
    margin-top: 1.5rem;
}

.mobile-download-section .download-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Mobile Sidebar Overlay */
.mobile-sidebar.show::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .main-header {
        padding: 15px 0;
    }
    
    .main-logo {
        max-height: 60px;
    }
}

@media (max-width: 767px) {
    .mobile-sidebar {
        width: 350px;
    }
    
    .mobile-sidebar-content {
        padding: 1.5rem 1rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .main-logo {
        max-height: 50px;
    }
    
    .navbar-toggler {
        margin-left: 0.5rem;
    }
}

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

#footer-section {
	background: url(../img/footer-bg.png) top center no-repeat;
	background-size: cover;
	padding-top: 45px;
	padding-bottom: 45px;
	border-top: 1px solid #333;
}

.footer-links li a {
	font-family: 'Inter-Regular';
	font-size: 9pt;
	color: #8c8c8c;
	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: #575757;	
}

.credits {
	max-width: 500px;
}

@media (max-width: 768px) {
	.footer-links li {
		border: 0;
		padding: .5rem;
	}
}

@media (min-width: 768px) {
	.dev-logo {
		margin-left: -20px;
	}
}

.soc-fb{
	font-family: 'SportyPro-Regular';
	font-size: 10.6pt;
	color: #505050;
	padding: 10px 20px;
	border: 2px solid #505050;
	text-decoration: none;
	display: inline-flex;
	text-align: center;
	align-items: center;
}
.soc-fb svg{
	width: 32px;
	height: 32px;
	margin-right: 5px;
}

.soc-fb:hover {
	color: #fff;
	border: 2px solid #f2f2f2;
}
#footer-section .container-fluid {
    max-width: 1400px;
    padding: 0 12px;
    margin: 0 auto !important;
}

.generic-form-table {
    border: solid 1px var(--themeColor);
    width: 100%;
}

.generic-form-table th, .generic-form-table td {
    padding: 10px;
}

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

.generic-form-table td p {
	color: var(--themeColor);
}

.main-content table {
    border: solid 1px var(--themeTextColor) !important;
}  

.global-container table th, .global-container table td {
    padding: 10px;
}

.search-form {
    display: none;
}

#submenu {
    color: var(--themeTextColor);
    background: none;
    font-size: 10pt;
}

#submenu a {
    color: var(--themeColor);
}

/* Main Page Styles - Reference Implementation */

.main-container {
	height: auto;
	min-height: 60px;
}

.container {
	max-width: 1400px !important;
}

.content-wrap {
	padding: 0px 0 !important;
}

/* Main Section Layout */
.main-section .container-fluid {
    max-width: 1400px !important;
    padding: 0 12px;
    margin: 0 auto !important;
}

.main-section {
    min-height: calc(100vh - (127px + 222px));
    margin-bottom: 20px;
    padding-bottom: 20px;
}

/* Column Titles */
.column-title {
	font-family: 'SportyPro-Regular';
	font-weight: lighter;
	font-size: 11pt;
	color: #f2f2f2;
}

/* Left and Right Column Constraints */
.left-col, .featured-events {
	width: 100%;
	max-width: 1020px;
}

.right-col, .accountpanel {
	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;
	}
}

@media (max-width: 1399.98px) {
	.right-col, .accountpanel {
		max-width: 1020px;
	}
}

/* Event Banners */
.eventbanners {
	max-width: 1020px;
}

/* Login Panel */
.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(--themeTextColor);
	text-transform: uppercase;
	padding-bottom: 5px;
}

.textClass {
	font-family: 'Inter-Medium' !important;
	font-size: 11pt !important;
	background: #33353b;
	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(--themeTextColor);
}

.login_row table {
	width: 100%;
	font-size: 9pt;
}

.loginBtn {
	font-family: 'Inter-Bold';
	width: 100%;
	height: 45px;
	border: 0;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 15pt;
	color: var(--themeTextSubColor);
	cursor: pointer;
}

.loginBtn:hover {
	filter: brightness(1.2);
}

.accountAction {
	font-size: 9pt;
	color: var(--themeTextColor);
	text-align: center;	
	width: 100%;
}

.accountAction a {
	color: var(--themeTextColor);
}

.accountAction a:hover {
	color: var(--themeHover);
}

.logged {
	margin-top: 20px;
	font-size: 13pt;
}

/* Main Content Column */
.maincontent {
	background: #1e1e1e;
	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;
}

.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: #1e1e1e;
	border: 1px solid #4a4a4a;
	border-radius: 7px;
	padding: 30px 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: #e38445;
	margin: 0 !important;
}

.text-rank {
	font-family: 'SportyPro-Regular';
	font-size: 10pt;
	color: #e38445;
}

.pvp-name {
	font-family: 'Gotham-Book';
	font-size: 8pt;
    color: #ffffff;
}

.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: #e38445;
}

.fame-title {
	font-family: 'Inter-Bold' !important;
	font-size: 18pt !important;
	color: #f2f2f2;
}

.guild-container {
	background: url(../img/emp.png) no-repeat top center;
	background-size: cover;
}

.gotm img.agitlord_emblem {
	margin-left: 17px;
    margin-top: 50px;
}

.agitlord_heading {
	margin-top: -35px;
}

.btn-castleowners {
	font-family: 'SportyPro-Bold';
	font-size: 9pt;
	color: #fff;
	background-color: var(--themeColor);
	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;
}

.flag {
	background: url(../img/flag.png) no-repeat;
	height: 70px;
	padding: 20px 0 0 18px;
	margin-bottom: 20px;
	float: left;
}

.flag-container {
	width: 60px;
}

/* Right Sidebar Nav - Reference Implementation */
.sidebar-links ul {
	margin: 0;
	padding: 0;
    list-style-type: 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 - Reference Implementation */
.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;
}

/* Featured Events Section */
.eventbanners-container, .owl-carousel {
    position: relative;
}

.eventbanners img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --------------------------------
 Owl Carousel Customization
-------------------------------- */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: relative;
    background: rgba(0,0,0,0.6);
    
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    pointer-events: auto;
    z-index: 2;
    transition: background 0.2s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
    color: #fff;
}

.owl-carousel .owl-nav button span {
    font-size: 2rem;
    line-height: 40px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: #2caae1;
}

.owl-theme .owl-dots {
	margin: 15px auto !important;
}

.owl-carousel .item {
	text-align: center;
}
.owl-carousel .nav-btn{
	height: 25px;
	position: absolute;
	width: 26px;
	cursor: pointer;
	top: -90% !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: -15px;
}
.owl-carousel .next-slide{
	background: url('../img/nav-icon.png') no-repeat scroll -33px 0;
	height: 30px;
	width: 32px;
	right: -15px;
}
.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 !important;
	height: 9px !important;
	margin: 5px 2px !important;
	background: #536479 !important;
	border-radius: 3px
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: #97a3b2 !important;
}

/* --------------------------------
 Tournament and Additional Styles
-------------------------------- */

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

.vertical-table {
	border: 1px solid var(--themeTextColor) !important;
}

.vertical-table th, .vertical-table td {
	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}

.vertical-table td {
	padding: 5px 10px;
	background: transparent !important;
}

.vertical-table th {
	padding: 5px 10px;
	background-color: transparent !important;
}

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

  .horizontal-table td {
	padding: 5px 10px;
	background: transparent !important;
}

	

.horizontal-table th, .horizontal-table td {
	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}



.horizontal-table th {
	padding: 5px 10px;
	background-color: transparent !important;
}

.pages .page-num {
	color: var(--themeColor);
}

.pages .current-page {
	color: #cc9808 !important;
	font-weight: bold;
}



.pages .page-prev, .pages .page-next {
	color: var(--themeTextColor);
}

/* Login Form Enhancements */
.error-message {
    color: #dc3545;
    font-family: 'Inter-Medium';
    font-size: 9pt;
    margin-bottom: 10px;
    text-align: center;
    background: rgba(220, 53, 69, 0.1);
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.small-link {
    font-family: 'Inter-Regular';
    font-size: 8pt;
    color: var(--themeTextColor);
    text-decoration: underline;
}

.small-link:hover {
    color: var(--themeHover);
}

.security-code img {
    border-radius: 4px;
    border: 1px solid #4a4a4a;
    width: 100%;
    max-width: 150px;
}

.refresh-captcha {
    margin-top: 5px;
    text-align: center;
}

.logged-in-panel {
    text-align: center;
    padding: 20px 0;
}

.logged-in-panel p {
    font-family: 'Inter-Medium';
    font-size: 11pt;
    color: #f2f2f2;
    margin-bottom: 15px;
}

.account-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-links .btn {
    font-family: 'Inter-Bold';
    font-size: 9pt;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.account-links .btn-primary {
    background: var(--themeColor);
    color: #fff;
    border: 1px solid var(--themeColor);
}

.account-links .btn-primary:hover {
    background: transparent;
    color: var(--themeColor);
}

.account-links .btn-secondary {
    background: transparent;
    color: #8c8c8c;
    border: 1px solid #4a4a4a;
}

.account-links .btn-secondary:hover {
    background: #4a4a4a;
    color: #fff;
}
.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;
}

:host,
:root {
  --fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";
  --fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";
  --fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";
  --fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";
  --fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";
  --fa-font-sharp-solid:normal 900 1em/1 "Font Awesome 6 Sharp";
  --fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"
}
svg:not(:host).svg-inline--fa,
svg:not(:root).svg-inline--fa {
  overflow:visible;
  box-sizing:content-box
}
.svg-inline--fa {
  display:var(--fa-display,inline-block);
  height:1em;
  overflow:visible;
  vertical-align:-.125em
}
.svg-inline--fa.fa-2xs {
  vertical-align:.1em
}
.svg-inline--fa.fa-xs {
  vertical-align:0
}
.svg-inline--fa.fa-sm {
  vertical-align:-.0714285705em
}
.svg-inline--fa.fa-lg {
  vertical-align:-.2em
}
.svg-inline--fa.fa-xl {
  vertical-align:-.25em
}
.svg-inline--fa.fa-2xl {
  vertical-align:-.3125em
}
.svg-inline--fa.fa-pull-left {
  margin-right:var(--fa-pull-margin,.3em);
  width:auto
}
.svg-inline--fa.fa-pull-right {
  margin-left:var(--fa-pull-margin,.3em);
  width:auto
}
.svg-inline--fa.fa-li {
  width:var(--fa-li-width,2em);
  top:.25em
}
.svg-inline--fa.fa-fw {
  width:var(--fa-fw-width,1.25em)
}
.fa-layers svg.svg-inline--fa {
  bottom:0;
  left:0;
  margin:auto;
  position:absolute;
  right:0;
  top:0
}
.fa-layers-counter,
.fa-layers-text {
  display:inline-block;
  position:absolute;
  text-align:center
}
.fa-layers {
  display:inline-block;
  height:1em;
  position:relative;
  text-align:center;
  vertical-align:-.125em;
  width:1em
}
.fa-layers svg.svg-inline--fa {
  -webkit-transform-origin:center center;
  transform-origin:center center
}
.fa-layers-text {
  left:50%;
  top:50%;
  -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
  -webkit-transform-origin:center center;
  transform-origin:center center
}
.fa-layers-counter {
  background-color:var(--fa-counter-background-color,#ff253a);
  border-radius:var(--fa-counter-border-radius,1em);
  box-sizing:border-box;
  color:var(--fa-inverse,#fff);
  line-height:var(--fa-counter-line-height,1);
  max-width:var(--fa-counter-max-width,5em);
  min-width:var(--fa-counter-min-width,1.5em);
  overflow:hidden;
  padding:var(--fa-counter-padding,.25em .5em);
  right:var(--fa-right,0);
  text-overflow:ellipsis;
  top:var(--fa-top,0);
  -webkit-transform:scale(var(--fa-counter-scale,.25));
  transform:scale(var(--fa-counter-scale,.25));
  -webkit-transform-origin:top right;
  transform-origin:top right
}
.fa-layers-bottom-right {
  bottom:var(--fa-bottom,0);
  right:var(--fa-right,0);
  top:auto;
  -webkit-transform:scale(var(--fa-layers-scale,.25));
  transform:scale(var(--fa-layers-scale,.25));
  -webkit-transform-origin:bottom right;
  transform-origin:bottom right
}
.fa-layers-bottom-left {
  bottom:var(--fa-bottom,0);
  left:var(--fa-left,0);
  right:auto;
  top:auto;
  -webkit-transform:scale(var(--fa-layers-scale,.25));
  transform:scale(var(--fa-layers-scale,.25));
  -webkit-transform-origin:bottom left;
  transform-origin:bottom left
}
.fa-layers-top-right {
  top:var(--fa-top,0);
  right:var(--fa-right,0);
  -webkit-transform:scale(var(--fa-layers-scale,.25));
  transform:scale(var(--fa-layers-scale,.25));
  -webkit-transform-origin:top right;
  transform-origin:top right
}
.fa-layers-top-left {
  left:var(--fa-left,0);
  right:auto;
  top:var(--fa-top,0);
  -webkit-transform:scale(var(--fa-layers-scale,.25));
  transform:scale(var(--fa-layers-scale,.25));
  -webkit-transform-origin:top left;
  transform-origin:top left
}
.fa-1x {
  font-size:1em
}
.fa-2x {
  font-size:2em
}
.fa-3x {
  font-size:3em
}
.fa-4x {
  font-size:4em
}
.fa-5x {
  font-size:5em
}
.fa-6x {
  font-size:6em
}
.fa-7x {
  font-size:7em
}
.fa-8x {
  font-size:8em
}
.fa-9x {
  font-size:9em
}
.fa-10x {
  font-size:10em
}
.fa-2xs {
  font-size:.625em;
  line-height:.1em;
  vertical-align:.225em
}
.fa-xs {
  font-size:.75em;
  line-height:.0833333337em;
  vertical-align:.125em
}
.fa-sm {
  font-size:.875em;
  line-height:.0714285718em;
  vertical-align:.0535714295em
}
.fa-lg {
  font-size:1.25em;
  line-height:.05em;
  vertical-align:-.075em
}
.fa-xl {
  font-size:1.5em;
  line-height:.0416666682em;
  vertical-align:-.125em
}
.fa-2xl {
  font-size:2em;
  line-height:.03125em;
  vertical-align:-.1875em
}
.fa-fw {
  text-align:center;
  width:1.25em
}
.fa-ul {
  list-style-type:none;
  margin-left:var(--fa-li-margin,2.5em);
  padding-left:0
}
.fa-ul>li {
  position:relative
}
.fa-li {
  left:calc(var(--fa-li-width,2em) * -1);
  position:absolute;
  text-align:center;
  width:var(--fa-li-width,2em);
  line-height:inherit
}
.fa-border {
  border-color:var(--fa-border-color,#eee);
  border-radius:var(--fa-border-radius,.1em);
  border-style:var(--fa-border-style,solid);
  border-width:var(--fa-border-width,.08em);
  padding:var(--fa-border-padding,.2em .25em .15em)
}
.fa-pull-left {
  float:left;
  margin-right:var(--fa-pull-margin,.3em)
}
.fa-pull-right {
  float:right;
  margin-left:var(--fa-pull-margin,.3em)
}
.fa-beat {
  -webkit-animation-name:fa-beat;
  animation-name:fa-beat;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);
  animation-timing-function:var(--fa-animation-timing,ease-in-out)
}
.fa-bounce {
  -webkit-animation-name:fa-bounce;
  animation-name:fa-bounce;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));
  animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))
}
.fa-fade {
  -webkit-animation-name:fa-fade;
  animation-name:fa-fade;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));
  animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))
}
.fa-beat-fade {
  -webkit-animation-name:fa-beat-fade;
  animation-name:fa-beat-fade;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));
  animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))
}
.fa-flip {
  -webkit-animation-name:fa-flip;
  animation-name:fa-flip;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);
  animation-timing-function:var(--fa-animation-timing,ease-in-out)
}
.fa-shake {
  -webkit-animation-name:fa-shake;
  animation-name:fa-shake;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,linear);
  animation-timing-function:var(--fa-animation-timing,linear)
}
.fa-spin {
  -webkit-animation-name:fa-spin;
  animation-name:fa-spin;
  -webkit-animation-delay:var(--fa-animation-delay,0s);
  animation-delay:var(--fa-animation-delay,0s);
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,2s);
  animation-duration:var(--fa-animation-duration,2s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,linear);
  animation-timing-function:var(--fa-animation-timing,linear)
}
.fa-spin-reverse {
  --fa-animation-direction:reverse
}
.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name:fa-spin;
  animation-name:fa-spin;
  -webkit-animation-direction:var(--fa-animation-direction,normal);
  animation-direction:var(--fa-animation-direction,normal);
  -webkit-animation-duration:var(--fa-animation-duration,1s);
  animation-duration:var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  animation-iteration-count:var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function:var(--fa-animation-timing,steps(8));
  animation-timing-function:var(--fa-animation-timing,steps(8))
}
@media (prefers-reduced-motion:reduce) {
  .fa-beat,
  .fa-beat-fade,
  .fa-bounce,
  .fa-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    -webkit-animation-delay:-1ms;
    animation-delay:-1ms;
    -webkit-animation-duration:1ms;
    animation-duration:1ms;
    -webkit-animation-iteration-count:1;
    animation-iteration-count:1;
    transition-delay:0s;
    transition-duration:0s
  }
}
@-webkit-keyframes fa-beat {
  0%,
  90% {
    -webkit-transform:scale(1);
    transform:scale(1)
  }
  45% {
    -webkit-transform:scale(var(--fa-beat-scale,1.25));
    transform:scale(var(--fa-beat-scale,1.25))
  }
}
@keyframes fa-beat {
  0%,
  90% {
    -webkit-transform:scale(1);
    transform:scale(1)
  }
  45% {
    -webkit-transform:scale(var(--fa-beat-scale,1.25));
    transform:scale(var(--fa-beat-scale,1.25))
  }
}
@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform:scale(1,1) translateY(0);
    transform:scale(1,1) translateY(0)
  }
  10% {
    -webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);
    transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)
  }
  30% {
    -webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));
    transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))
  }
  50% {
    -webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);
    transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)
  }
  57% {
    -webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));
    transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))
  }
  64% {
    -webkit-transform:scale(1,1) translateY(0);
    transform:scale(1,1) translateY(0)
  }
  100% {
    -webkit-transform:scale(1,1) translateY(0);
    transform:scale(1,1) translateY(0)
  }
}
@keyframes fa-bounce {
  0% {
    -webkit-transform:scale(1,1) translateY(0);
    transform:scale(1,1) translateY(0)
  }
  10% {
    -webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);
    transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)
  }
  30% {
    -webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));
    transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))
  }
  50% {
    -webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);
    transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)
  }
  57% {
    -webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));
    transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))
  }
  64% {
    -webkit-transform:scale(1,1) translateY(0);
    transform:scale(1,1) translateY(0)
  }
  100% {
    -webkit-transform:scale(1,1) translateY(0);
    transform:scale(1,1) translateY(0)
  }
}
@-webkit-keyframes fa-fade {
  50% {
    opacity:var(--fa-fade-opacity,.4)
  }
}
@keyframes fa-fade {
  50% {
    opacity:var(--fa-fade-opacity,.4)
  }
}
@-webkit-keyframes fa-beat-fade {
  0%,
  100% {
    opacity:var(--fa-beat-fade-opacity,.4);
    -webkit-transform:scale(1);
    transform:scale(1)
  }
  50% {
    opacity:1;
    -webkit-transform:scale(var(--fa-beat-fade-scale,1.125));
    transform:scale(var(--fa-beat-fade-scale,1.125))
  }
}
@keyframes fa-beat-fade {
  0%,
  100% {
    opacity:var(--fa-beat-fade-opacity,.4);
    -webkit-transform:scale(1);
    transform:scale(1)
  }
  50% {
    opacity:1;
    -webkit-transform:scale(var(--fa-beat-fade-scale,1.125));
    transform:scale(var(--fa-beat-fade-scale,1.125))
  }
}
@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));
    transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))
  }
}
@keyframes fa-flip {
  50% {
    -webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));
    transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))
  }
}
@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform:rotate(-15deg);
    transform:rotate(-15deg)
  }
  4% {
    -webkit-transform:rotate(15deg);
    transform:rotate(15deg)
  }
  24%,
  8% {
    -webkit-transform:rotate(-18deg);
    transform:rotate(-18deg)
  }
  12%,
  28% {
    -webkit-transform:rotate(18deg);
    transform:rotate(18deg)
  }
  16% {
    -webkit-transform:rotate(-22deg);
    transform:rotate(-22deg)
  }
  20% {
    -webkit-transform:rotate(22deg);
    transform:rotate(22deg)
  }
  32% {
    -webkit-transform:rotate(-12deg);
    transform:rotate(-12deg)
  }
  36% {
    -webkit-transform:rotate(12deg);
    transform:rotate(12deg)
  }
  100%,
  40% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
}
@keyframes fa-shake {
  0% {
    -webkit-transform:rotate(-15deg);
    transform:rotate(-15deg)
  }
  4% {
    -webkit-transform:rotate(15deg);
    transform:rotate(15deg)
  }
  24%,
  8% {
    -webkit-transform:rotate(-18deg);
    transform:rotate(-18deg)
  }
  12%,
  28% {
    -webkit-transform:rotate(18deg);
    transform:rotate(18deg)
  }
  16% {
    -webkit-transform:rotate(-22deg);
    transform:rotate(-22deg)
  }
  20% {
    -webkit-transform:rotate(22deg);
    transform:rotate(22deg)
  }
  32% {
    -webkit-transform:rotate(-12deg);
    transform:rotate(-12deg)
  }
  36% {
    -webkit-transform:rotate(12deg);
    transform:rotate(12deg)
  }
  100%,
  40% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg)
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg)
  }
}
.fa-rotate-90 {
  -webkit-transform:rotate(90deg);
  transform:rotate(90deg)
}
.fa-rotate-180 {
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg)
}
.fa-rotate-270 {
  -webkit-transform:rotate(270deg);
  transform:rotate(270deg)
}
.fa-flip-horizontal {
  -webkit-transform:scale(-1,1);
  transform:scale(-1,1)
}
.fa-flip-vertical {
  -webkit-transform:scale(1,-1);
  transform:scale(1,-1)
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform:scale(-1,-1);
  transform:scale(-1,-1)
}
.fa-rotate-by {
  -webkit-transform:rotate(var(--fa-rotate-angle,none));
  transform:rotate(var(--fa-rotate-angle,none))
}
.fa-stack {
  display:inline-block;
  vertical-align:middle;
  height:2em;
  position:relative;
  width:2.5em
}
.fa-stack-1x,
.fa-stack-2x {
  bottom:0;
  left:0;
  margin:auto;
  position:absolute;
  right:0;
  top:0;
  z-index:var(--fa-stack-z-index,auto)
}
.svg-inline--fa.fa-stack-1x {
  height:1em;
  width:1.25em
}
.svg-inline--fa.fa-stack-2x {
  height:2em;
  width:2.5em
}
.fa-inverse {
  color:var(--fa-inverse,#fff)
}
.fa-sr-only,
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border-width:0
}
.fa-sr-only-focusable:not(:focus),
.sr-only-focusable:not(:focus) {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border-width:0
}
.svg-inline--fa .fa-primary {
  fill:var(--fa-primary-color,currentColor);
  opacity:var(--fa-primary-opacity,1)
}
.svg-inline--fa .fa-secondary {
  fill:var(--fa-secondary-color,currentColor);
  opacity:var(--fa-secondary-opacity,.4)
}
.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity:var(--fa-secondary-opacity,.4)
}
.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity:var(--fa-primary-opacity,1)
}
.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill:#000
}
.fa-duotone.fa-inverse,
.fad.fa-inverse {
  color:var(--fa-inverse,#fff)
}

.message {
  display: block;
  padding: 10px;
  font-weight: bold;
  font-size: 120%;
  color: #fff;
  background-color: #333;
}

@media (max-width: 575.98px) { /* Bootstrap 4 mobile breakpoint */
  .header-row-mobile {
    width: 100% !important;
  }
}

.close-sidebar {
  position: absolute;
  top: 18px;         /* adjust as needed */
  right: 18px;       /* adjust as needed */
  font-size: 2rem;   /* bigger X */
  color: #f44336;    /* red, or your preferred color */
  text-decoration: none;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.close-sidebar:hover {
  color: #fff;
}
.sidebar-menu {
  position: relative; /* ensure the close button is positioned relative to the sidebar */
}

.pages {
  margin-top: 20px;
  padding-top: 10px;
  color: #ccc;
  text-align: center;
  border-top: 1px solid #ddd;
}
.jump-to-page {
  margin-top: 8px;
  font-size: 8pt;
  text-align: center;
}

.info-text {
  margin-bottom: 6px;
  padding: 5px;
  color: #666;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
}
.global-container a {
  color: var(--themeColor);
}

.content-wrap #server_status{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.content-wrap #server_status th, .content-wrap #server_status td{
  padding: 5px;
  border: 1px solid #ccc;
}

@media (max-width: 575.98px) { /* Bootstrap 4 mobile breakpoint */
  .gotm img.agitlord_emblem {
    margin-left: 18px;
    margin-top: 50px;
  }
}

.owl-next,
.owl-prev,
.owl-next:focus,
.owl-prev:focus,
.owl-next:active,
.owl-prev:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* --------------------------------
   AOS Animation Enhancements
-------------------------------- */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom fade animations for better performance */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
  transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
  transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 0.8);
  transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------
   Custom Page Load Animation
-------------------------------- */
.main-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}
.main-sect {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure animation works on all devices */
@media (max-width: 768px) {
  .main-section {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
  }
  .main-sect {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
  }
}

@media (max-width: 768px) {
  
  .owl-carousel .nav-btn {
    height: 30px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: -119% !important;
  }
}