/**
 * Mu Online WebEngine CMS Template Theme
 * Version: 2.0 (Premium Dark Medieval Fantasy Overhaul)
 * Author: Antigravity AI
 * Copyright (c) 2026, All Rights Reserved
 */

/* ==========================================================================
   Base Styles & Reset Overrides
   ========================================================================== */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  background: url(../img/top-fon-bg.png) top center no-repeat, url(../img/bottom-fon-bg.png) bottom center repeat;
  background-size: 1440px auto, auto;
  background-attachment: scroll, scroll;
  background-color: #06080d;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #c5a059;
  text-decoration: none;
}

a:hover,
button:hover {
  color: #f3e5ab;
  text-shadow: 0 0 8px rgba(243, 229, 171, 0.5);
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}

h1,
h2,
h3 {
  font-family: 'Cinzel', serif;
  color: #c5a059;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(197, 160, 89, 0.2);
  font-weight: 700;
  letter-spacing: 1px;
}

h1 { font-size: 22px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }

table {
  width: 100%;
}

table td {
  border-collapse: collapse;
  padding: 8px;
}

caption {
  margin-bottom: 15px;
  color: #c5a059;
  font-family: 'Cinzel', serif;
  font-weight: bold;
}

:focus {
  outline: none;
}

::-webkit-input-placeholder { color: rgba(203, 213, 225, 0.4); }
::-moz-placeholder { color: rgba(203, 213, 225, 0.4); }
:-moz-placeholder { color: rgba(203, 213, 225, 0.4); }
:-ms-input-placeholder { color: rgba(203, 213, 225, 0.4); }

/* ==========================================================================
   Form Fields (Dark Steel Design)
   ========================================================================== */

.input-menu,
textarea {
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.7);
  background: rgba(10, 15, 26, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 4px;
  color: #fff;
  padding: 10px 15px;
  position: relative;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.input-menu:focus,
textarea:focus {
  border-color: #c5a059;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 10px rgba(197, 160, 89, 0.4);
  outline: none;
}

/* ==========================================================================
   Premium Buttons (Pure CSS 3D Metal Gold & Bronze)
   ========================================================================== */

button,
.button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #a07833 0%, #684b1b 50%, #4a3410 100%);
  border: 1px solid #ffd700;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  text-decoration: none !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

button:hover,
.button:hover {
  background: linear-gradient(135deg, #c5a059 0%, #8c6e3d 50%, #614b25 100%);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  filter: brightness(110%);
}

button:active,
.button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.button-small {
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 90px;
  padding: 6px 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #fff;
  background: linear-gradient(135deg, #88652c 0%, #5a4019 100%);
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
}

.button-small:hover,
.button-small:focus {
  background: linear-gradient(135deg, #c5a059 0%, #8c6e3d 100%);
  border-color: #ffd700;
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ==========================================================================
   Layout Structures
   ========================================================================== */

.wrapper {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.container_web {
  min-height: 1200px;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.flex-s {
  display: flex;
  justify-content: space-between;
}

.flex-s-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   Header & Top Navigation
   ========================================================================== */

.header-top {
  height: 285px;
  position: relative;
}

.top-panel {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 10;
  height: 60px;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  padding: 0 20px;
}

.lang-block {
  position: relative;
}

.lang-block:after {
  border: 5px solid transparent;
  border-top-color: #c5a059;
  position: absolute;
  left: -15px;
  top: 7px;
  content: '';
}

.lang-block a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: 'Cinzel', serif;
  color: #cbd5e1;
  font-weight: bold;
}

.lang-block a:hover {
  color: #c5a059;
}

.lang-block img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 8px;
  border: 1px solid #ffd700;
  box-shadow: 0 0 5px rgba(197, 160, 89, 0.5);
  transition: all 0.3s ease;
}

.main-item {
  color: #c5a059;
}

.main-item span {
  color: #a0aec0;
  margin-left: 3px;
  font-size: 11px;
}

.hidden-block {
  position: absolute;
  border: 1px solid rgba(197, 160, 89, 0.4);
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  min-width: 160px;
  z-index: 100;
  left: -30px;
  top: 30px;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  padding: 8px 0px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}

.hidden-block a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #cbd5e1;
  font-size: 12px;
}

.hidden-block a:hover {
  background: rgba(197, 160, 89, 0.15);
  color: #ffd700;
}

.hidden-block:after {
  border: 5px solid transparent;
  border-bottom-color: rgba(197, 160, 89, 0.4);
  position: absolute;
  left: 24px;
  top: -10px;
  content: '';
}

.lang-block:hover .hidden-block {
  visibility: visible;
  opacity: 1;
  top: 25px;
}

.menu {
  display: flex;
  border-bottom: none;
  align-items: center;
}

.menu li {
  margin-right: 15px;
}

.menu li a {
  color: #fff !important;
  text-transform: uppercase;
  padding: 0px 20px !important;
  font-weight: bold;
  display: block;
  line-height: 38px;
  font-size: 13px;
  font-family: 'Cinzel', serif;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.menu li a::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.22; /* Low opacity on default state */
}

.menu li a::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(10, 15, 26, 0.85) 0%, rgba(6, 8, 13, 0.95) 100%);
  transition: all 0.3s ease;
}

.menu li a:hover::before,
.menu .active a::before {
  opacity: 0.7; /* Full flag visibility on hover or active */
}

.menu li a:hover::after,
.menu .active a::after {
  background: linear-gradient(to bottom, rgba(10, 15, 26, 0.25) 0%, rgba(6, 8, 13, 0.4) 100%);
}

.menu li a:hover,
.menu .active a {
  color: #ffd700 !important;
  border-color: #ffd700;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
}

.menu li a:before,
.menu .active a:before {
  /* Override */
}

.logo {
  position: absolute;
  left: 125px;
  top: 90px;
  z-index: 5;
}

.logo img {
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.8));
  transition: transform 0.5s ease;
}

.logo img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   Content Container (Glassmorphic Tome Style)
   ========================================================================== */

.content {
  width: 711px;
  background: rgba(8, 12, 20, 0.12);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  border: 1px solid rgba(220, 30, 30, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 10px rgba(220, 30, 30, 0.15), inset 0 0 20px rgba(220, 30, 30, 0.03);
  border-radius: 6px;
  padding: 30px;
  line-height: 1.6;
  color: #cbd5e1;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.content:hover {
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(220, 30, 30, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95), 0 0 20px rgba(220, 30, 30, 0.4), inset 0 0 30px rgba(220, 30, 30, 0.05);
}

.content::after {
  content: "";
  display: table;
  clear: both;
}

/* Elegant inside border frame */
.content::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  pointer-events: none;
  border-radius: 4px;
}

.content a:hover {
  text-decoration: none;
}

.content img {
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.content li {
  margin-bottom: 5px;
}

.content-title {
  color: #c5a059;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 1px;
  clear: both;
}

.content-title a {
  color: #cbd5e1;
  font-size: 13px;
  text-decoration: none;
}

.content-title a:hover {
  color: #c5a059;
}

/* ==========================================================================
   Events Slider Component
   ========================================================================== */

.slider {
  overflow: hidden;
  position: relative;
  width: 400px;
  height: 220px;
  float: left;
  border: 1px solid rgba(197, 160, 89, 0.25);
  margin: -30px 25px 25px -30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}

.slider .slides {
  position: relative;
  transition: 1s;
}

.slider .slides .slide {
  float: left;
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 400px;
  height: 220px;
}

.slider .slides .active .slide-info {
  transition: all 1.5s ease;
  opacity: 1;
}

.slider .slides .slide-info {
  line-height: 1.4;
  position: absolute;
  padding: 15px 20px;
  bottom: 0px;
  width: 100%;
  opacity: 0;
  color: #e2e8f0;
  font-weight: normal;
  background: linear-gradient(to top, rgba(6, 8, 13, 0.95) 0%, rgba(6, 8, 13, 0.5) 60%, transparent 100%);
}

.slider .slides .slide-info h2 {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
  background: linear-gradient(#ffe8bd, #c5a059);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider .slides .slide-info p {
  margin-bottom: 0px;
  width: 100%;
  font-size: 11px;
  color: #94a3b8;
}

.slider .arrows {
  position: absolute;
  height: 40px;
  width: 25px;
  top: 90px;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  background-size: contain !important;
}

.slider .next {
  background: url(../img/arrow-right.png) no-repeat;
  right: 10px;
}

.slider .prev {
  background: url(../img/arrow-left.png) no-repeat;
  left: 10px;
}

.slider .navigation {
  position: absolute;
  bottom: 15px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
}

.slider .navigation .dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(197, 160, 89, 0.5);
  cursor: pointer;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.slider:hover .next,
.slider:hover .prev {
  opacity: 0.8;
}

.slider .next:hover,
.slider:hover .prev:hover {
  opacity: 1;
  filter: brightness(130%);
}

.slider .navigation .active {
  background: #c5a059;
  width: 15px;
  border-radius: 4px;
  box-shadow: 0 0 8px #c5a059;
}

/* ==========================================================================
   Right Sidebar & Widgets
   ========================================================================== */

.sidebar {
  width: 268px;
  color: #fff;
}

/* Download Button CSS (Green Glowing Metal) */
.download-button {
  background: linear-gradient(135deg, rgba(22, 56, 44, 0.1) 0%, rgba(13, 33, 26, 0.15) 100%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  border: 1px solid rgba(30, 94, 73, 0.12);
  border-radius: 6px;
  width: 269px;
  height: 85px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.download-button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.download-button:hover::before {
  left: 150%;
}

.download-button a {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #4ade80;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-family: 'Inter', sans-serif;
  text-decoration: none !important;
}

.download-button a span {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 3px;
  color: #fff;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.download-button:hover {
  background: linear-gradient(135deg, rgba(22, 56, 44, 0.6) 0%, rgba(13, 33, 26, 0.7) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(-2px);
  border-color: #2ecc71;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5), 0 0 15px rgba(46, 204, 113, 0.2);
  filter: brightness(110%);
}

/* Registration Button CSS (Red Glowing Metal) */
.registration-button {
  background: linear-gradient(135deg, #5c1818 0%, #360f0f 100%);
  border: 1px solid #8e2a2a;
  border-radius: 6px;
  width: 269px;
  height: 85px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.registration-button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.registration-button:hover::before {
  left: 150%;
}

.registration-button a {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #f87171;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-family: 'Inter', sans-serif;
  text-decoration: none !important;
}

.registration-button a span {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 3px;
  color: #fff;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.registration-button:hover {
  transform: translateY(-2px);
  border-color: #e74c3c;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
  filter: brightness(110%);
}

/* Login Block Container */
.login-block {
  padding: 20px;
  background: rgba(8, 12, 20, 0.12);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  border: 1px solid rgba(220, 30, 30, 0.35);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(220, 30, 30, 0.15);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.login-block:hover {
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(220, 30, 30, 0.8);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.85), 0 0 20px rgba(220, 30, 30, 0.4);
}

.login-block::before {
  content: "";
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: 4px;
  pointer-events: none;
}

.login-block p {
  margin-bottom: 12px;
}

.login-block input {
  width: 100%;
}

.login-block .login {
  font-size: 13px;
  margin-top: 20px;
  align-items: center;
}

.login-block .l-login a {
  color: #cbd5e1;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 6px;
}

.login-block .l-login a:hover {
  color: #c5a059;
  text-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

.login-block .l-login .lost {
  text-decoration: underline;
}

.login-block .l-login .lost:hover {
  text-decoration: none;
}

.login-block .l-login .reg {
  text-transform: uppercase;
  color: #ffd700;
  font-weight: bold;
}

.login-block .r-login button {
  display: block;
  width: 110px;
  height: 48px;
  padding: 0px;
  font-size: 14px;
  font-family: 'Cinzel', serif;
}

/* Sidebar Widgets */
.widget {
  background: rgba(8, 12, 20, 0.12);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  border: 1px solid rgba(220, 30, 30, 0.35);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(220, 30, 30, 0.15);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.widget:hover {
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(220, 30, 30, 0.8);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.85), 0 0 22px rgba(220, 30, 30, 0.4);
}

.widget::before {
  content: "";
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: 4px;
  pointer-events: none;
}

.widget-title {
  font-size: 15px;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  color: #c5a059;
  text-transform: uppercase;
  background: linear-gradient(to bottom, rgba(197, 160, 89, 0.15) 0%, rgba(10, 15, 26, 0) 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  height: 55px;
  padding: 0px 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  z-index: 2;
  position: relative;
}

.widget-title a {
  color: #cbd5e1;
  font-weight: normal;
  font-size: 12px;
}

.widget-title a:hover {
  color: #c5a059;
}

/* Status block details */
.status {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  position: relative;
  padding: 15px 0px 10px 0px;
}

.status:after {
  content: "";
  width: 100%;
  bottom: 0px;
  left: 0px;
  position: absolute;
}

.status img {
  margin-left: -5px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.status-b > div {
  margin-bottom: 10px;
}

.status-b {
  width: 270px;
  padding: 0 10px 0 0;
}

.status-b .online {
  color: #2ecc71;
  text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
  font-weight: bold;
}

.status-b .offline {
  color: #e74c3c;
  text-shadow: 0 0 8px rgba(231, 76, 60, 0.5);
  font-weight: bold;
}

.status-b .progress-block {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.3);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  padding: 1px;
}

.status-b .progress-bar {
  height: 6px;
  background: linear-gradient(to right, #c5a059, #ffd700);
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
  border-radius: 4px;
  display: block;
}

.status-b .online-number {
  text-align: right;
  font-size: 11px;
  color: #94a3b8;
}

.widget-menu {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.menu-user-cp {
  padding: 15px;
  position: relative;
  z-index: 2;
}

.widget-menu li {
  padding: 12px 0px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.widget-menu li:last-child {
  border-bottom: none;
}

.widget-menu li:hover {
  background: rgba(197, 160, 89, 0.08);
  margin: 0px -20px;
  padding: 12px 20px;
  color: #f3e5ab;
}

.widget-menu li:hover a {
  color: #f3e5ab;
}

.widget-menu li a {
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.info-span-l {
  float: left; 
  width: auto; 
  text-align: left; 
  padding-left: 5px; 
  display: block;
  color: #94a3b8;
}

.info-span-r {
  float: right; 
  text-align: right; 
  padding-right: 5px; 
  display: block; 
  width: auto;
  color: #fff;
  font-weight: bold;
}

/* User Control Panel Menu */
.menu-user-cp li {
  position: relative;
  list-style-type: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.menu-user-cp li:last-child {
  border-bottom: none;
}

.menu-user-cp li:before {
  content: "";
  background: url(../img/nav.png) -5px 0px no-repeat;
  height: 8px;
  width: 5px;
  margin-right: 15px;
  position: absolute;
  left: 30px;
  top: 16px;
  opacity: 0.5;
  filter: sepia(100%) hue-rotate(10deg) saturate(300%);
}

.menu-user-cp li a {
  display: block;
  padding: 12px 25px 12px 50px;
  text-decoration: none;
  font-size: 13px;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.menu-user-cp li:hover a {
  padding-left: 55px;
  color: #f3e5ab;
  background: rgba(197, 160, 89, 0.1);
  box-shadow: inset 3px 0 0 #c5a059;
}

/* Top rankings widget items */
.top-list span {
  display: block;
}

.top-list {
  height: 41px;
  display: flex;
  align-items: center;
  font-size: 13px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.top-list:last-child {
  border-bottom: none;
}

.top-list:first-child,
.top-list:first-child:hover {
  color: #c5a059;
  font-size: 12px;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  background: none;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  padding: 0;
}

.top-list .top-number {
  width: 20px;
  font-weight: bold;
  color: #94a3b8;
}

.top-list .top-name {
  width: 125px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-list .top-name a {
  color: #e2e8f0;
}

.top-list .top-name a:hover {
  color: #c5a059;
  text-shadow: 0 0 5px rgba(197, 160, 89, 0.4);
}

.top-list .top-lvl {
  width: 55px;
  text-align: right;
  padding-right: 5px;
}

.top-list .top-lvl sup {
  color: #ef4444;
}

.top-list:hover {
  background: rgba(197, 160, 89, 0.08);
}

.top-list:hover span:nth-child(2n) {
  font-weight: bold;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
  height: auto;
  padding: 60px 0 40px 0;
  position: relative;
  color: #94a3b8;
  font-size: 13px;
  background: rgba(6, 9, 14, 0.95);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  margin-top: 60px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.footer a {
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #c5a059;
  text-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

.f-menu {
  width: 711px;
}

.f-menu li {
  margin-bottom: 10px;
}

.f-menu li:first-child {
  color: #c5a059;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 14px;
}

.f-menu li a {
  color: #94a3b8;
  font-weight: normal;
}

.f-menu li a:before {
  content: "•";
  margin-right: 8px;
  color: #c5a059;
}

.f-info {
  width: 268px;
  text-align: center;
}

.soc-block {
  margin-bottom: 30px;
}

.soc-block a {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0px 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%) brightness(80%);
}

.soc-block a:hover {
  transform: translateY(-3px);
  filter: grayscale(0%) brightness(110%);
}

.soc-block .fb { background: url(../img/soc-icons.png) no-repeat; }
.soc-block .tw { background: url(../img/soc-icons.png) -37px 0px no-repeat; }
.soc-block .gl { background: url(../img/soc-icons.png) -74px 0px no-repeat; }

.templstock {
  font-size: 12px;
  color: #64748b;
}

.templstock a {
  text-decoration: underline;
  line-height: 1.4;
  color: #94a3b8;
}

.templstock a:hover {
  text-decoration: none;
  color: #c5a059;
}

.f-block {
  margin-bottom: 40px;
}

.copyright {
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 25px;
  color: #64748b;
}

/* ==========================================================================
   Server Time Widget (Bottom Right)
   ========================================================================== */

.time-server {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 10px;
  width: 268px;
  height: 48px;
  background: rgba(8, 12, 20, 0.12);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.time-server:hover {
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(197, 160, 89, 0.1);
}

.your-time {
  width: 100%;
  height: 20px;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
}

.server-time {
  width: 100%;
  height: 20px;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
}

.time-server span {
  width: 90px;
  color: #94a3b8;
}

.time-server #tLocalTime,
.time-server #tServerTime {
  color: #fff !important;
  font-weight: bold;
  width: 50px !important;
}

.time-server #tLocalDate,
.time-server #tServerDate {
  color: #c5a059 !important;
  font-weight: normal;
  width: 90px !important;
  font-size: 11px;
}

/* ==========================================================================
   Interactive Dynamic Header Logo
   ========================================================================== */

.dynamic-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform 0.3s ease;
}

.dynamic-logo:hover {
  transform: scale(1.03);
}

.logo-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(to bottom, #ffffff 10%, #ffd700 60%, #c5a059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.9));
  letter-spacing: 5px;
  display: block;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.logo-subtitle {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff4500 0%, #ffaa00 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
  letter-spacing: 12px;
  text-transform: uppercase;
  margin: 4px 0 0 12px;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
}

.logo-subtitle:hover {
  filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.9)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
  transform: scale(1.05);
}

/* ==========================================================================
   Pre-landing Intro Fullscreen Overlay
   ========================================================================== */

.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 12, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}

.intro-container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  position: relative;
}

.intro-title {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(to bottom, #ffffff 20%, #ffd700 65%, #c5a059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.9));
  letter-spacing: 8px;
  margin: 0 0 5px 0;
  line-height: 1.1;
}

.intro-tagline {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: bold;
  color: #a0aec0;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin: 0 0 45px 0;
  text-shadow: 0 3px 6px rgba(0,0,0,0.9);
}

.intro-cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
  width: 100%;
}

.intro-card {
  width: 23%;
  perspective: 1000px;
}

.intro-card-inner {
  background: rgba(10, 15, 26, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 8px;
  padding: 30px 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(197, 160, 89, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 290px;
  text-align: center;
}

.intro-card-inner::before {
  content: "";
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.intro-card:hover .intro-card-inner {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.35), 0 0 20px rgba(197, 160, 89, 0.15);
  background: rgba(197, 160, 89, 0.08);
}

.intro-card-icon {
  width: 54px;
  height: 54px;
  color: #c5a059;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.intro-card:hover .intro-card-icon {
  color: #ffd700;
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.intro-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  font-weight: bold;
}

.intro-card:hover h3 {
  color: #ffd700;
}

.intro-card p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

.intro-card-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 16px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: bold;
  color: #cbd5e1;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.intro-card:hover .intro-card-btn {
  background: linear-gradient(135deg, #a07833 0%, #684b1b 100%);
  border-color: #ffd700;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.intro-footer {
  margin-top: 10px;
}

.intro-enter-btn {
  background: linear-gradient(135deg, #88652c 0%, #5a4019 100%);
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 4px;
  padding: 12px 36px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 1.5px;
}

.intro-enter-btn:hover {
  background: linear-gradient(135deg, #c5a059 0%, #8c6e3d 100%);
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   Flag Backgrounds for Navigation Menu Items
   ========================================================================== */

/* 1. HOME/INICIO -> Argentina Flag */
.menu li:nth-child(1) a::before {
  background: radial-gradient(circle at center, #ffd700 4px, transparent 5px), 
              linear-gradient(to bottom, #74acdf 33%, #ffffff 33%, #ffffff 66%, #74acdf 66%);
}

/* 2. INFO -> Colombia Flag */
.menu li:nth-child(2) a::before {
  background: linear-gradient(to bottom, #fcd116 50%, #003893 50%, #003893 75%, #ce1126 75%);
}

/* 3. DOWNLOADS -> Peru Flag */
.menu li:nth-child(3) a::before {
  background: linear-gradient(to right, #d91023 33%, #ffffff 33%, #ffffff 66%, #d91023 66%);
}

/* 4. DONATIONS/BUY CREDITS -> Spain Flag */
.menu li:nth-child(4) a::before {
  background: linear-gradient(to bottom, #c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%);
}

/* 5. RANKINGS -> Brazil Flag (Portuguese) */
.menu li:nth-child(5) a::before {
  background: radial-gradient(circle at center, #002776 5px, transparent 6px), 
              linear-gradient(135deg, transparent 40%, #ffd700 40%, #ffd700 60%, transparent 60%), 
              #009c3b;
}

/* ==========================================================================
   Sidebar Online Users Circle Widget (Imperio Style)
   ========================================================================== */

.sidebar-online-circle {
  width: 160px;
  height: 160px;
  margin: 15px auto 20px auto;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(200, 30, 30, 0.85) 0%, rgba(100, 10, 10, 0.95) 55%, rgba(30, 0, 0, 1) 100%);
  border: 3px solid rgba(220, 30, 30, 0.6);
  box-shadow:
    0 0 0 6px rgba(220, 30, 30, 0.12),
    0 0 0 12px rgba(220, 30, 30, 0.07),
    0 0 30px rgba(220, 30, 30, 0.55),
    0 0 60px rgba(220, 30, 30, 0.25),
    inset 0 2px 8px rgba(255, 100, 100, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: circlePulse 2.5s ease-in-out infinite;
}

@keyframes circlePulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(220, 30, 30, 0.12),
      0 0 0 12px rgba(220, 30, 30, 0.07),
      0 0 30px rgba(220, 30, 30, 0.55),
      0 0 60px rgba(220, 30, 30, 0.25),
      inset 0 2px 8px rgba(255, 100, 100, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(220, 30, 30, 0.18),
      0 0 0 16px rgba(220, 30, 30, 0.1),
      0 0 40px rgba(220, 30, 30, 0.75),
      0 0 80px rgba(220, 30, 30, 0.35),
      inset 0 2px 12px rgba(255, 100, 100, 0.3);
  }
}

.sidebar-online-circle .online-count {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 100, 100, 0.8), 0 2px 4px rgba(0,0,0,0.9);
  margin-bottom: 2px;
}

.sidebar-online-circle .online-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 200, 200, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Register pill button */
.sidebar-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  margin: 0 auto 15px auto;
  padding: 12px 20px;
  background: linear-gradient(135deg, #c01010 0%, #8b0000 100%);
  border: 1.5px solid rgba(255, 80, 80, 0.5);
  border-radius: 30px;
  color: #fff !important;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  box-shadow: 0 4px 15px rgba(180, 0, 0, 0.5), 0 0 20px rgba(220, 30, 30, 0.2);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sidebar-register-btn:hover {
  background: linear-gradient(135deg, #e01515 0%, #a00000 100%);
  border-color: rgba(255, 100, 100, 0.8);
  box-shadow: 0 6px 25px rgba(220, 30, 30, 0.7), 0 0 30px rgba(220, 30, 30, 0.35);
  transform: translateY(-2px);
  color: #fff !important;
  text-shadow: 0 0 10px rgba(255, 150, 150, 0.6), 0 1px 3px rgba(0,0,0,0.8);
}