html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
  outline: none !important;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
  
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
/*
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}


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

body {
  width: 100%;
  min-width: 1200px;
  background-color: #0a0605;
  font-family: 'Candara', 'Verdana';
  font-weight: 400;
  font-size: 15px;
  color: #f7ddbf;
  min-height: 100vh;
  position: relative;
  _overflow-x: hidden;
}

html.lenis {
  height: auto;
}
 
.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

:root {
    --anim-speed: 3s;
    --primary-red: #ff4d6d;
    --glow-red: #ff0040;
    --dark-bg: #0b0b0d;
    --deep-purple: #1a0b2e;


    --accent: #ffc107;
    --accent-rgb: 0, 242, 255;
    --bg-dark: #020202;
    --panel-bg: rgba(5, 5, 5, 0.95);
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-speed: 0.8s;


    --mu-gold: #ffc107;
    --mu-blue: #0dcaf0;
    --mu-red: #ff4d4d;
    --card-bg: #121212;
}


/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { 
    background: #b58e38; 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover { background: #efd316; }




/* Contenedor de corazones */
#heart-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    color: var(--primary-red);
    font-size: 20px;
    user-select: none;
    animation: rise linear forwards;
    opacity: 0;
    will-change: transform;
    /* Brillo tipo ítem excelente */
    text-shadow: 0 0 10px var(--glow-red), 0 0 20px var(--glow-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* Animación de abajo hacia arriba */
@keyframes rise {
  0% {
      transform: translateY(110vh) translateX(0) rotate(0deg) scale(0.5);
      opacity: 0;
  }
  15% {
      opacity: 1;
      transform: translateY(90vh) translateX(10px) rotate(15deg) scale(1.2);
  }
  /* Se mantiene visible por más tiempo antes de desvanecerse */
  60% {
      opacity: 0.8;
  }
  /* Desaparece al 85% del recorrido (aprox 15vh desde arriba) */
  85% {
      opacity: 0;
      transform: translateY(15vh) translateX(-15px) rotate(270deg) scale(0.8);
  }
  100% {
      transform: translateY(-10vh) translateX(-20px) rotate(360deg) scale(0.6);
      opacity: 0;
  }
}

.background_site {
  _background: url('../img/fon-bg-top4.jpg') center top no-repeat, url('../img/fon-bg-bottom3.jpg') center bottom no-repeat;
  background: url('../img/background/fon-bg-bottom.jpg') center bottom no-repeat;
  background-color: #0a0605;
  width: 100%; height: 100%;
  position: absolute; left: 0; _top: 69px; z-index: -2;
}
/* Contenedor principal que se adapta al contenido */
.background_site .storm-wrapper {
    width: 100%; max-width: 1920px; height: 100%;
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.background_site .lightning-stage {
    position: absolute;
    width: 100%; height: 100%;
    line-height: 0;
}

/* Las imágenes ahora fluyen con el documento */
.background_site .lightning-stage img {
    width: 1920px;
    height: auto; /* Mantiene la proporción original */
    display: block;
    
    left: 50%;
    transform: translateX(-50%);
}

/* Las capas animadas se posicionan sobre la base */
.background_site .img-base {
    position: relative;
    z-index: 1;
}

.background_site .img-glow, .background_site .img-strike {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

/* CAPA 2: Los rayos iniciales */
.background_site .img-glow {
    z-index: 2;
    opacity: 0;
    animation: lightning-glow var(--anim-speed) infinite;
}

/* CAPA 3: El rayazo potente */
.background_site .img-strike {
    z-index: 3;
    opacity: 0;
    animation: lightning-strike var(--anim-speed) infinite;
}

/* Keyframes para los rayos tenues (Enero2) */
@keyframes lightning-glow {
    0%, 15%, 25%, 35%, 100% { opacity: 0; }
    18%, 22%, 30%, 32% { opacity: 1; }
}

/* Keyframes para el rayo principal (Enero3) */
@keyframes lightning-strike {
    0%, 21%, 26%, 100% { opacity: 0; }
    22%, 25% { 
        opacity: 1; 
        filter: brightness(1.3) contrast(1.2);
    }
}

/* Efecto de flash que cubre toda la altura del documento */
.background_site .lightning-stage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 10;
    pointer-events: none;
    animation: screen-flash var(--anim-speed) infinite;
}

@keyframes screen-flash {
    0%, 21%, 26%, 100% { background: rgba(255, 255, 255, 0); }
    22%, 24% { background: rgba(255, 255, 255, 0.1); }
}



a {
  transition: all 0.3s ease;
  color: #8d7962;
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}
h1,
h2,
h3 {
  color: #ffaf43;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}
h1 {
  font-size: 20px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
/*
table {
  width: 100%;
}
table td {
  border-collapse: collapse;
  padding: 4px;
  border: 1px solid #482c22;
  text-align: center;
}

table tr:nth-child(odd) {
  background-color: #100c0c;
}
*/
caption {
  margin-bottom: 15px;
}

.input-re{
 background-color: transparent !important;
 border: 0 !important;
 height: 45px;
 width: 250px;
 box-shadow: none;
 color: #e7c195;
 text-align: center;
}

#login-login .modal-content .input-re{
 background-color: transparent !important;
 max-width: 250px;
 border: 0 !important;
 box-shadow: none;
 padding: 0 35px;
 transition: all .4s ease-in-out;
}

#login-login .modal-content .input-re:-internal-autofill-selected,
#login-login .modal-content .input-re:focus{
 background-color: transparent !important;
 border: 0 !important;
}


textarea {
  color: #241a18;
  position: relative;
}

.agree a{
  color: #0b8a88;
  text-decoration: underline !important;
}

.agree a:hover{
  text-decoration: none !important;
}

:focus {
  outline: none;
}
::-webkit-input-placeholder {
  color: #e7c195;
  text-align: center;
}
::-moz-placeholder {
  color: #e7c195;
}
:-moz-placeholder {
  color: #e7c195;
}
:-ms-input-placeholder {
  color: #e7c195;
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.flex {
  display: flex;
}
.flex-s {
  display: flex;
  justify-content: space-between;
}
.flex-s-c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-panel {
  width: 100%;
  position: absolute;
  top: 25px;
  z-index: 10;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
  min-height: 700px;
  position: relative;
}

.content{
  position: relative;
  z-index: 10;
}

.menu li a:before {
  content: "";
  position: absolute;
  height: 23px;
  width: 1px;
  left: -26px;
  top: -3px;
  background: #4b2c17;
}

.menu li:first-child a:before{
  display: none;
}
.menu li: a{
  margin: 0px 8px;
}

.menu li {
  margin: 0px 8px 0px 0px;
}
.menu li:last-of-type a {
  background: url(../img/estrella-imagen-animada-0147.gif) repeat scroll 0 -4px transparent;
  background-size: 35px auto;
}

.menu a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0px 20px;
  display: block;
  _height: 80px;
  _line-height: 80px;
  position: relative;
  outline: none !important;
}

.menu a:after {
  content: "";
  transition: 0.3s;
  height: 0px;
  width: 0px;
}

.menu a:hover {
  color: #ffaf43;
}

.menu a:hover:after {
  content: "";
  height: 0;
  width: 100%;
  left: 0px;
  position: absolute;
  background: #ffaf43;
}
.menu .active a {
  color: #ffaf43;
}
.menu .active a:after {
  content: "";
  height: 2px;
  width: 100%;
  left: 0px;
  position: absolute;
  background: #ffaf43;
}

.logo {
  display: block;
  position: absolute;
  transition: 0.3s;
  z-index: 5; left: 50%; top: 371px;
  transform: translateX(-50%);
}

.logo:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.logo a{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo a img {
  z-index: 20;
  margin-bottom: 2rem;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: floatImg 4.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.logo a .sombra {
  position: absolute;
  bottom: 75px;
  z-index: 10;
  width: 400px;
  height: 14px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgb(0 0 0) 0%, rgba(0, 0, 0, 0) 75%);
  will-change: transform;
  animation: floatShadow 4.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatShadow {
  0%, 100% { transform: scale(1); opacity: 0.85; filter: blur(4px); }
  50% { transform: scale(0.55); opacity: 0.25; filter: blur(8px); }
}

.logo *{
  display: inline-block; vertical-align: middle;
}

.topPanel__buttons a {
  margin-left: 18px;
  padding: 17px 32px;
  line-height: normal;
}

.buttons-small{
  transition: all 0.3s ease;
  cursor: pointer;
  justify-content: center;
  display: flex;
  margin-top: 25px;
}

.button-small{
  height: 50px;
  color: #ffaf43;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/bg-button-1.jpg) no-repeat;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.35);
}

.buttons-small a:hover{
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

button, .button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../img/bg-button-1.jpg) center bottom no-repeat;
  color: #ffaf43;
  position: relative;
  _padding: 19px 32px;
  padding: 6px 12px;
  line-height: 1.42857143;
  /*width: 140px;*/
  /*height: 50px;*/
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  border: none;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.35);
}

button:hover, .button:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

.buttonDark {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../img/bg-button-sign.png) center bottom no-repeat;
  min-width: 140px;
  color: #ffaf43;
  position: relative;
  padding: 17px 32px;
  _width: 140px;
  height: 50px;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.3);
  top: 3px;
}

.buttonDark:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}


.fast-button{
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}

.download-block  {
  display: flex;
  height: 125px;
  width: 398px;
  background: url(../img/download-button.jpg) no-repeat;
  filter: brightness(95%);
  transition: all .2s ease;
}
.download-block:hover  {
  filter: brightness(105%);
}


.download-block:hover  a{
  transform: scale(1.1);
}

.download-block a {
  font-size: 30px;
  color: #ffaf43;
  padding-left: 172px;
  padding-top: 40px;
  text-align: left;
  text-shadow: #000 0px 1px;
  font-weight: 600;
  transition: all .4s ease;
  transform: scale(1);
}

.download-block span {
  font-weight: bold;
  font-style: italic;
  background: linear-gradient(#f2f252, #f23f08);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  text-shadow:none;
}

.download-block p{
  color: #ffb959;
  font-size: 14px;
  text-transform: uppercase; font-style: italic;
  padding-top: 10px;
}

.download-block:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}


/* servers
-----------------------------------------------------------------------------*/

.status-block {
  background: url(../img/status-bg.jpg) no-repeat;
  height: 125px;
  width: 398px;
  margin-left: 3px;
  overflow: hidden;
  transition: all .4s ease;
  filter: brightness(85%);
}
.status-block:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}
.status-block:hover .server-bottom{
  background-position: 0 0;
  padding: 25px 30px 0px 155px;
}

.server {
  padding: 35px 20px 0px 136px;
  height: 125px;
  font-size: 12px;
  background: url(../img/img-server-top.png) no-repeat;
  background-position: -31px 0;
  font-size: 14px;
  transition: all .4s; 
  filter: brightness(85%);
}
.server:hover {
  background-position: 5px 0;
  padding: 35px 20px 0px 167px;
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}


.server .server-name {
  color: #fff;
}

.server .status-online {
  color: #53fd53;
  float: right;
}


.server-bottom {
  background: url(../img/img-server-bottom.png) no-repeat;
  background-position: -40px 0;
  height: 125px;
  font-size: 14px;
  padding: 25px 30px 0px 115px;
  transition: all .4s ease;
}

.server-bottom span{ text-align: center; }
.server-bottom .server-name {
  color: #fff; font-size: 13px;
  text-align: left; text-transform: uppercase;
  margin-bottom: 7px;
  display: block;
}

.server-bottom time{
  min-width: 80px; font-weight: bold;
  color: #ff9d29;
  border-right: solid 1px #6d6153;
  display: inline-block; vertical-align: middle;
}
#tLocalDate, #tServerDate{ 
  min-width: 80px; font-weight: bold;
  color: #ff9d29;
  display: inline-block; vertical-align: middle; 
}

.server-bottom .status-offline {
  color: #f74133;
  float: right;
}

.progress-bar-webengine {
  height: 16px;
  margin: 9px 0px 6px 0px;
  position: relative;
  padding-top: 1px;
}

.progress-bar-webengine:after {
  content: "";
  position: absolute;
  background-color: #1a100a;
  width: 100%;  height: 8px;
  top: 7px; left: 0px;
  border-radius: 6px;
  border: solid 1px #694e45;
  margin-top: -1px;
}

.progress-bar-webengine span {
  background: #00ff00 url(../img/online_progress_bar.jpg) no-repeat left center;
  background-size: 211px auto;
  height: 5px; 
  margin-top: 5.5px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px #adff00;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.progress-bar-webengine-off {
  height: 16px;
  margin: 9px 0px 6px 0px;
  position: relative;
  padding-top: 1px;
}

.progress-bar-webengine-off:after {
  content: "";
  position: absolute;
  background-color: #1a100a;
  width: 100%;
  height: 4px;
  top: 7px;
  left: 0px;
}

.progress-bar-webengine-off span {
  height: 17px;
  background: url(../img/line-server-off.png) repeat-x;
  display: block;
  position: relative;
  z-index: 1;
}

.desc {
  color: #8d7962;
  font-size: 12px;
  text-decoration: underline;
}

.desc:hover {
  text-decoration: none;
}

/* servers end
-----------------------------------------------------------------------------*/

/*   slider  */
.swiper-container{
  width: 599px;
  float: left;
}

.swiper-slider {
  width: 100%;
  height: 370px;
}

.swiper-slider .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
}
.swiper-slider .swiper-slide h2 {
  color: #ffaf43;
  font-size: 24px;
  _background: rgba(44, 28, 19, 0.55);
  margin-bottom: 0px;
  font-weight: bold;
  text-align: center;
  padding: 26px 50px;
  text-shadow: 0 0 20px #212121, 0 0 20px #212121, 0 0 20px #212121, 0 0 20px #212121;
}

.swiper-slider .swiper-slide .slider-info {
  position: absolute;
  bottom: 30px;
  height: 75px;
  padding: 0px 15px;
  padding-bottom: 20px;
  width: 599px;
  left: 0;
  display: flex; 
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0));
}

.swiper-slider .swiper-slide .slider-info p {
  color: #fff;
  font-size: 16px;
  width: 100%;
  line-height: 1.5;
  margin-bottom: 5px;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
  text-align: center;
}
.swiper-slider .swiper-pagination {
  height: 30px;
  line-height: 30px;
  bottom: 0 !important;
  background: rgba(32, 24, 23, 0.9);
  border-top: 1px solid #3f2f21;
  text-align: left;
  padding-left: 40px;
}
.swiper-slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0px;
  background: #908783;
}

.swiper-pagination-bullets .swiper-pagination-bullet{
  margin-right: 15px !important;
}


.swiper-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffd481;
}
.swiper-slider .slider-button {
  width: 55px;
  height: 55px;
}
.swiper-slider .swiper-button-next {
  background: url(../img/arrow-right-1.jpg) center no-repeat;
  right: 0;
}

.swiper-slider .swiper-button-prev {
  background: url(../img/arrow-left-1.jpg) center no-repeat;
  left: 0;
}

.swiper-slider .swiper-button-prev:hover{
  -webkit-filter: brightness(120%); 
  filter: brightness(120%);
}

.swiper-slider .swiper-button-next:hover{
  -webkit-filter: brightness(120%); 
  filter: brightness(120%);
}

.swiper-slider .swiper-button-disabled {
  opacity: 0.7;
}

/*   end slider*/

/*Last news*/

.news-top{
  float: right;
  height: 370px;
  width: 599px;
  margin-left: 2px;
  background: url(../img/fon-news.jpg) no-repeat;
  position: relative;
}


.news-top-title {
  position: relative;
  display: flex;
}
.news-top-title span {
  display: block;
  color: #f03003;
  font-size: 20px;
  font-weight: bold;
  padding: 40px 40px 20px 40px;
  text-transform: uppercase;
  position: relative;
}

.tab-block.active {
  display: block;
  animation: tab 0.6s linear;
}

.tab-more {
  position: absolute;
  right: 0;
  color: #ffaf43;
  background: #140e0d;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -9px;
  line-height: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 18px;
  margin-right: 40px;
}

.bright:hover {
  filter: brightness(120%);
  background: #322725;
}

.news-top-text{
  padding: 0px 40px;
  overflow: auto;
  width: 92.5%; height: 70%;
  position: absolute;
}

span.news-1, .news a span, .panel-title a span{
  color: #e9dbcc;
  text-shadow: 0 0 10px #f7ddbf;
}

.news:hover{
  height: 42px;
  background-color: #ffffff0d;
  box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.45);
}

.news:hover .news-1{
color: #e7c195;
}

 .news:hover .date{
color: #e7c195;
}
 

.date{
  color: #8d7962;
}

.news{
  height: 42px;
  margin: 0px -40px 0px -40px;
  padding: 0 40px;
  transition: 0.4s;
}

.news a{
  width: 400px;
  padding: 6px 0;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f7ddbf;
}
 .news a:hover {
  color: #ffaf43 !important;
}
.top-content{
  display: flex;
  justify-content: center;
}

/*END Last news*/


/*--block-widget--*/

.block-widget{
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
  margin-top: 10px;
  justify-content: center;
}

.block-widget-more{
  margin-top: 10px;
  float: left;
}

.widget-fon{
  background: url(../img/fon-top-players.jpg) center top no-repeat;
  background-size: 100% auto;
  box-shadow: 0em 8px 8px rgba(0, 0, 0, 0.1);
  height: 670px;
  width: 336px;
  transition: all .6s cubic-bezier(0.72, -0.02, 0.33, 1.03);
  display: inline-block; vertical-align: top;
  box-sizing: content-box;
}

.widget-fon-guilds{
  background-image: url(../img/fon-guilds.jpg);
  background-position: 6px 0;
  background-repeat: no-repeat;
  box-shadow: 0em 8px 8px rgba(0, 0, 0, 0.1);
  height: 670px;
  width: 336px;
  margin-left: 3px;
  transition: all .6s cubic-bezier(0.72, -0.02, 0.33, 1.03);
  display: inline-block; vertical-align: top;
  box-sizing: content-box;
}

.widget-fon-discussions{
  background-image: url(../img/fon-discussions.jpg);
  background-position: -6px 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  box-shadow: 0em 8px 8px rgba(0, 0, 0, 0.1);
  height: 670px;
  width: 336px;
  margin-right: 3px;
  transition: all .6s cubic-bezier(0.72, -0.02, 0.33, 1.03);
  display: inline-block; vertical-align: top;
  box-sizing: content-box;
}
.widget-fon:hover{ _background-size: 106% auto; }
.widget-fon-guilds:hover{ _background-size: 106% auto; }
.widget-fon-discussions:hover{ _background-size: 106% auto; }

.block-players{
  padding: 0px 35px 35px 35px;
  margin-top: 4px;
}

.block-widget-title{
  padding-top: 165px;
  padding-bottom: 35px;
  color: #ffaf43;
  font-size:20px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 2px 5px #130101, 1px 2px 5px #130101;
}

.guild .top-number {
  width: 60px;
}
.top-block.guild .top-number img {
  margin-bottom: -2px;
  margin-left: 5px;
}


.top-block.guild .score {
  padding-left: 55px
}

.top-block {
  width: 100%;
  padding-bottom: 15px; padding-left: 12px; padding-right: 12px;
}
.top-block span {
  display: block;
}
.top-block .top-number {
  width: 20px;
}

.guild img{
  border: 1px solid #360e17;
}

.top-block .top-flag {
  width: 30px;
  padding-bottom: 4px;
}

.top-block .top-name {
  width: 162px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top-block .top-lvl {
  width: 80px;
}

.top-block .top-Res sup {
  font-size: 10px;
  color: #ff0000;
  position: absolute;
  margin-top: -5px;
}

.top-list {
  height: 41px;
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: all 0.3s ease;
  color: #f7ddbf;
  position: relative;
}
.top-list:before{
  content: '';
  width: 0%; height: 0;
  border-bottom: 1px solid #ce2627bd;
  position: absolute; left: 0; bottom: 0;
  transition: all 0.6s ease;
  box-shadow: 0 0 15px #810005, 0 0 15px #eb0108, 0 0 15px #eb0108;
}

.top-list:nth-child(2) span, .top-list:nth-child(2) a{
  color: #f0d78c; font-size: 20px; font-weight: 600;
}
.top-list:nth-child(3) span, .top-list:nth-child(3) a{
  color: #d1d1d1; font-size: 18px; font-weight: 600;
}
.top-list:nth-child(4) span, .top-list:nth-child(4) a{
  color: #c4a080; font-size: 17px; font-weight: 600;
}
.top-list:nth-child(2) a, .top-list:nth-child(3) a, .top-list:nth-child(4) a{
  background: url(../img/estrella-imagen-animada-0147.gif) repeat scroll 0 0 transparent;
  background-size: 27px auto;
}
  
.top-list a {
  color: #f7ddbf; 
  text-decoration: none;
}
.top-list:hover {
  height: 41px;
  color: #ffaf43;
  text-shadow: 0 0 15px #810005, 0 0 15px #eb0108, 0 0 15px #eb0108;
  position: relative; z-index: 5;
}
.top-list:hover:before { width: 100%; }

.top-list:hover a {
  color: #ffaf43 !important;
}

.top-title {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 15px;
}


.top-block.guild .top-number {
    width: 60px;
}
/*--block-widget end--*/


/*widget Discussions*/

.admin-icon{
float: left;
border-radius: 50%;
width: 45px;
height: 45px;
background-size: 45px;
box-shadow: 0em 8px 15px rgba(0, 0, 0, 0.3);
margin-right: 26px;
}

.discussions-content-top{

}

.discussions-icon{
float: left;
border-radius: 50%;
width: 45px;
height: 45px;
background-size: 45px;
box-shadow: 0em 8px 15px rgba(0, 0, 0, 0.3);
}

.discussions-message{
  float: right;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #563d2e;
  color: #ffaf43;
  font-size: 12px;
  box-shadow: 0em 8px 15px rgba(0, 0, 0, 0.3);
}

.discussions-text{
  padding-left: 16px;
  font-size: 14px;
}

.discussions-text-bt{
  padding-left: 16px;
  font-size: 15px;
  color: #8d7962;
}

.discussions-content-block:hover .discussions-text-bt{
  color: #8b6757;
}

.discussions-text-bt a{
  color: #fccca0;
}


.discussions-content-block{
  padding-bottom: 10px;
  padding-top: 11px;
}

.discussions-content-block:hover{
background-color: #342b29;
border-bottom: 1px solid #5c432b;
box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.45);
transition: 0.4s;
margin: 0px -40px 0px -40px;
padding: 10px 26px 10px 26px;
cursor: pointer;
}

.discussions-content-block:hover .discussions-text {
  color: #ffaf43;
}

.discussions-content-block:hover .discussions-text-bt a {
  text-decoration:none;
  color: #ffaf43;
}

/*widget Discussions end*/


/*MEDIA*/
.content-last-news{
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.content-last-news.m-0{
  margin: 0;
}
.content-last-news.m-0 .last-news-top{ margin: 0; }


.last-news-top{
  width: 100%; height: 85px;
  background: url(../img/fon-bg-news.jpg) center no-repeat;
  color: #ffaf43;
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  padding: 32px 35px 0px 35px;
  margin-bottom: 4px;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px #1b0601, 0px 0px 10px #5d3303, 0px 0px 10px #5d3303;
}

.last-news-top a{
  float: right;
  font-size: 14px;
  color: #ffaf43;
  text-decoration: none;
  font-weight: normal;
  padding-top: 3px;
}

.last-news-top a:hover{
  text-decoration: underline;
}

.media-fon{
  width: 100%; max-width: 1200px;
  _height: 267px;
  background: url(../img/fon-media.jpg) no-repeat;
  padding-top: 18px;
}

.slick-slider-slide {
  padding: 15px;
}
.slick-slider-slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 1s;
  transform: scale(1);
  border: solid 0px #5b463a;
}

.slick-slider-slide a img{
  border: solid 0 #5b463a;
  opacity: .5;
  transform: scale(1);
  transition: all .2s;
}

.slick-slider-slide.slick-slide.slick-active.slick-center a img{
  border: solid 1px #5b463a;
  opacity: 1;
  transform: scale(1.1);
}

.slick-slider-slide a[tabindex='-1']{ opacity: 0; }

.slick-slider-slide img {
  display: block;
}
.slick-center a {
  transform: scale(1.1);
}
.slick-center a:after {
  opacity: 0;
}

/*footer*/

.footer{
  width: 1200px;
  padding-bottom: 80px;
  margin: 0 auto;
  display: block;
}


/*To top*/

.toTop-fon{
    display: flex;
    justify-content: center;
    height: 42px;
    background: url(../img/fon-totop.png) no-repeat center;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.toTop {
  background: url(../img/fon-circle.png) no-repeat;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
}

.toTop:hover {
  -webkit-filter: brightness(140%); 
  filter: brightness(140%);
}

/* to top end*/


/* Footer
-----------------------------------------------------------------------------*/

.footer-block-t{
  padding-top: 33px;
  justify-content: center;
  align-items: center;
  text-align:center;
}

.f-menu li {
  display: inline-block;
  margin: 15px 23px;
}

.f-menu li a {
  text-transform: uppercase;
  color: #9b6926;
  font-size: 14px;
}

.f-menu li a:hover{
  color: #e39f45;
  font-weight: bold;
}

.f-menu li a:active{
  color: #e39f45;
  font-weight: bold;
}

.footer-end{
  margin-top: 51px;
    padding: 0 3%;
}

.footer-block-coperite{
  width: 240px;
  float: left;
  color: #fff;
}

.footer-block-coperite a{
  color: #ffa328;
}

.footer-block-coperite a:hover{
  text-decoration: underline;
}

.footer-block-r {
  width: 240px;
  float: right;
}

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

.soc-block a {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  padding-top: 8px;
  margin-left: 20px;
  background-color: #27130c;
  border: 1px solid #c66047;
  height: 33px;
  width: 33px;
  box-shadow: inset 0px 0px 7px 0px rgba(183, 55, 77, 0.9);
}

.soc-block a:hover {
  box-shadow: inset 0px 0px 15px 0px rgba(183, 55, 77, 0.9);
  filter: drop-shadow(0px 0px 6px rgba(220, 84, 107, 0.75));
  border: 1px solid #c66047;
}

.footer-logo{
  text-align:center;
  margin-top: -30px;
}

.footer-logo:hover{
  -webkit-filter: brightness(120%); 
  filter: brightness(120%);
}


.templstock:hover{
  -webkit-filter: brightness(120%); 
  filter: brightness(120%);
}

/*end footer*/


/*smog*/


.smog {
    position: absolute;
    top: 450px;
    left: 75%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateX(-50%);
}
.smog .num1 {
    -webkit-animation: spreadSmog 7s infinite linear;
    animation: spreadSmog 7s infinite linear;
}
.smog .num2 {
  -webkit-animation: spreadSmog 15s infinite linear;
  animation: spreadSmog 15s infinite linear;
}
.smog .num3 {
  -webkit-animation: spreadSmog 40s infinite linear;
  animation: spreadSmog 40s infinite linear;
}
.smog .num1 {
    bottom: 0;
    left: -677px;
    width: 2354px;
    height: 1300px;
    opacity: 0;
}
.smog i {
    position: absolute;
    display: block;
    background: url(../img/sp_smog.png) no-repeat;
    transform-origin: 50% 100%;
}
.smog .num2 {
    bottom: 0;
    left: -677px;
    width: 2354px;
    height: 1300px;
    opacity: 0;
}
.smog .num3 {
    bottom: 0;
    left: -677px;
    width: 2354px;
    height: 1300px;
    opacity: 0;
}
@keyframes spreadSmog {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0;
}
45% {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    opacity: 1;
}
90% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
}
100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
}
}

/*end smog*/

/*sparks*/

.sparks-sparks{
  left: 70%;
  position: absolute;
  top: 903px;
  transform: translateX(-50%);
  z-index: 2;
}

.sparks-1 {
    background-image: url(../img/sparks-1.png);
    width: 117px;
    height: 136px;
    right: 200px;
    bottom: 0px;
    background-position: left 0px bottom 0px;
    animation-name: sparks-1;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.sparks-2 {
    background-image: url(../img/sparks-2.png);
    width: 219px;
    height: 176px;
    right: 200px;
    bottom: 30px;
    background-position: left 0px bottom 0px;
    animation-name: sparks-2;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 0.5s;
    opacity: 0;
}

.sparks-3 {
    background-image: url(../img/sparks-3.png);
    width: 438px;
    height: 281px;
    right: 100px;
    bottom: 20px;
    background-position: left 0px bottom 0px;
    animation-name: sparks-3;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes sparks-1 {
  0% {
    right: 200px;
    bottom: 10px;
    opacity: 0;
  }
  33% {
    right: 210px;
    bottom: 20px;
    opacity: 0.5;
    transform: scale(1.1);
  }
  70% {
    right: 220px;
    bottom: 30px;
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    right: 230px;
    bottom: 40px;
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes sparks-2 {
  0% {
    right: 210px;
    bottom: 40px;
    opacity: 0;
  }
  33% {
    right: 220px;
    bottom: 50px;
    opacity: 0.5;
    transform: scale(1.1);
  }
  70% {
    right: 230px;
    bottom: 60px;
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    right: 240px;
    bottom: 70px;
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes sparks-3 {
  0% {
    right: 120px;
    bottom: 30px;
    opacity: 0;
  }
  33% {
    right: 140px;
    bottom: 50px;
    opacity: 0.5;
    transform: scale(1.1);
  }
  70% {
    right: 160px;
    bottom: 70px;
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    right: 180px;
    bottom: 90px;
    opacity: 0;
    transform: scale(1.1);
  }
}

.sparks {
  background-repeat: no-repeat;
  background-position: left 0px bottom 0px;
  position: absolute;
}
/*end sparks*/


/*modal windovs*/

.logo-re{
  text-align: center;
  display: inline-block;
}

.modal_div {
  width: 599px;
  min-height: 579px;
  background: url(../img/modal-top-bg.jpg) center top no-repeat, url(../img/modal-bottom-bg.jpg) center bottom no-repeat;
  position: fixed;
  background-color: #221918;
  top: 45%;
  left: 50%;
  margin-top: -90px;
  margin-left: -328px;
  display: none;
  opacity: 0;
  z-index: 199;
  padding: 50px 0px;
}

#login-login.login .modal-content{
  /* Usamos una imagen de placeholder de guerrero para simular tu fondo */
  --bg-url: url('../img/background/modal-bg.jpg');
  
  /* Degradado progresivo: De casi transparente (arriba) a muy oscuro (abajo) */
  background-image: linear-gradient(to bottom, rgba(1, 6, 12, 0.9) 8%, rgba(1, 6, 12, 0.1) 100%), var(--bg-url);
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 599px;
  min-height: 579px;
  border-radius: 0;
  padding-top: 100px;
  margin: 0 auto;
}

.modal_div .modal_close {
    width: 36px;
    height: 36px;
    background: url(../img/background/close-icon.png) no-repeat;
    position: absolute;
    top: -18px;
    right: -18px;
    cursor: pointer;
    display: block;
    z-index: 5;
}

.modal_close:hover {
  -webkit-filter: brightness(140%);
  filter: brightness(140%);
}


#overlay {
  z-index: 190;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.modal-content {
  padding: 0px 40px;
  text-align: center;
  color: #e7c195;
}
.modal-content h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}
.modal-content h2 span {
  position: relative;
  text-transform: uppercase;
  color: #ffaf43;
}

.modal-content form p {
  margin-bottom: 20px;
}

.formButton {
  text-align: center;
  margin-top: 40px;
}


.modal.two{
  background: rgb(10 10 10 / 80%);
  padding: 0;
}

.modal.two .modal-content{
  padding: 0;
}


.modal.two .modal_close {
  width: 36px;
  height: 36px;
  background: url(../img/close-icon.png) no-repeat;
  font-size: 0;
  position: absolute;
  top: -18px;
  right: -18px;
  cursor: pointer;
  display: block;
  z-index: 5;
  opacity: 1 !important;
  filter: brightness(100%);
  border-radius: 100%;
  overflow: hidden;
}
.modal.two .modal_close:hover {
  filter: brightness(150%);
}

/* Modal verticalmente centrado */
.modal.two  .modal-dialog {
  max-width: 80%;        /* 80% del ancho de la pantalla */
  width: 1200px; /* opcional: máximo ancho */
  position: relative;
  top: 50%;
  transform: translateY(-50%); 
  margin: 0 auto; /* para centrar horizontalmente también */
}

.modal.two  .modal-dialog iframe{
  width: 100%;
  height: 88vh;
}

.modal.two  .modal-dialog.bg{
  width: 599px; min-width: auto;
  height: auto;
}
.modal.two  .modal-dialog.bg .modal-content{
  background: url(../img/modal-top-bg.jpg) center top no-repeat, url(../img/modal-bottom-bg.jpg) center bottom no-repeat;
  background-color: #221918;
  padding: 25px 0;
  box-shadow: 0 0 55px #000, 0 0 55px #000, 0 0 55px #000 !important;
}
.modal.two  .modal-dialog.bg .modal-content.social a{
  margin: 0 12px;
}

/*end modal  windows*/

/*page-content*/

.page-content{
  padding: 40px 25px;
  width: 100%; max-width: 1200px;
  background: url(../img/fon-page-top.jpg) center top no-repeat, url(../img/fon-page-bottom.jpg) center bottom no-repeat;
  background-color: #211715; 
    display: block;
    margin: 0 auto;
}

.page-top{
  text-transform: uppercase;
  font-size: 20px;
  color: #ffaf43;
  text-align: center;
  font-weight: bold;
}

.page-title:nth-child(1){ padding-top: 0 !important;  }
.page-title{
  padding-top: 35px;
  padding-bottom: 30px;
}

.page-title-time{
  color: #8d7962;
}

.page-title-news{
  color: #ffaf43;
  text-transform: uppercase;
  font-size: 18px;
}

.page-text{
  line-height: 20px;
}

.page-text a{
  color: #ffaf43;
  text-decoration: underline;
}

.page-text a:hover{
  text-decoration: none;
  color: #8d7962;
}

.page-text-img{
  float: left;
  height: 286px;
  width: 476px;
  margin-right: 35px;
  margin-bottom: 15px;
}

/*end page-content*/

/*download*/

.page-title-news-1{
  color: #ffaf43;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
}

.downloadBlock {
  text-align: center;
  padding: 35px;
  margin: 0px 35px;
}

.downloadBlock p {
  margin-bottom: 30px;
}

.download-block-1 {
  margin-bottom: 40px;
}
.download-block-1:last-child {
  margin-bottom: 0px;
}

.client-text {
  margin-right: 50px;
  width: 255px;
  height: 90px;
  color: #f7ddbf;
  flex-wrap: wrap;
  align-content: center;
  background: #2e2524;
}
.client-text span {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 9px;
}

/*end download*/


/* RANKINGS FILTER BY CLASS */
.rankings-class-filter {
    background: #1e1513;
    display: inline-block;
    list-style-type: none;
    margin: 20px auto 30px auto;
    padding: 20px 20px 10px 20px;
    border-radius: 6px;
    border: solid 1px #332623;
}

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

.rankings-class-filter li:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

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

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

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

.rankings-class-filter-selection{
  color: #f7ddbf; font-size: 14px;
}
.rankings-class-filter-selection img {
    width: 60px;
    height: auto;
    border: solid 1px #f9cf958f;
    margin: 0 auto !important;
    display: block !important; vertical-align: top;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.rankings-class-filter-grayscale {
  -webkit-filter: grayscale(70%);
  filter: grayscale(70%);
}
.rankings-class-filter-grayscale img{
  border: solid 1px #352825;
}

.rankings-class-filter li:nth-child(9), .rankings-class-filter li:nth-child(10), .rankings-class-filter li:nth-child(11){ display: none !important; }

.panel{
  background: transparent !important;
}
.panel-footer{
  background: transparent !important;
  border-top: 1px solid #f7ddbf;
  div{
    color: #f7ddbf !important;
  }
}

.formButton button{
  padding: 19px !important;
  line-height: normal;
}

.panel-sidebar.rankings_level .panel-body img{
  border: 1px solid #f9cf958f;
  border-radius: 4px;
}

.panel-sidebar.rankings_level .panel-body a{
  background: url(../img/estrella-imagen-animada-0147.gif) repeat scroll 0 0 transparent;
  background-size: 22px auto;
}
.panel-sidebar.rankings_level .panel-body a:hover{
  color: #ffaf43 !important;
}
.panel-sidebar.rankings_level .panel-body tr:nth-child(2) a {
    color: #f0d78c;
    font-size: 18px;
    font-weight: 600;
}
.panel-sidebar.rankings_level .panel-body tr:nth-child(3) a {
    color: #d1d1d1;
    font-size: 16px;
    font-weight: 600;
}
.panel-sidebar.rankings_level .panel-body tr:nth-child(4) a {
    color: #c4a080;
    font-size: 14px;
    font-weight: 600;

}

.panel-news a {
  width: 100%;
  display: inline-block; vertical-align: top;
}
.panel-news a:hover { cursor: pointer; }

.panel-news a img{
  box-shadow: 0 0 0px #613d36;
  transform: scale(1);
  transition: all 0.3s ease;
}
.panel-news a img:hover{
  box-shadow: 0 0 20px #613d36;
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}

.cod-ref{
  background: transparent !important;
  height: auto;
  color: #f7ddbf !important; font-size: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px; text-align: center;
  padding: 15px;
}

.ticket{
  border: 0 !important;
}
.ticket .panel-body{
  padding: 0 !important;
}

.ticket-message {
  background: #333333 url(../img/general_table_bg.jpg) no-repeat !important;
  background-size: cover !important;
}
.ticket-message .panel-body{
  border: 1px solid #705954;
  border-radius: 5px;
}

.general-table-ui.ticket{
  border: 1px solid #705954;

}
.general-table-ui.ticket tr:first-of-type td{
  padding: 10px !important;
}

.admincp-button{ position: fixed !important; z-index: 999; }

.btn{
  outline: none !important;
}

.cont-streamer{
  display: inline-block; vertical-align: middle;
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%); z-index: 20;
}
.streamer{
  display: block; vertical-align: top;
  position: relative;
}
.cont-streamer .streamer .cont-caption{
  background-position: center;
  background-repeat: no-repeat;
  width: 289px; height: 59px;
  padding: 20px 25px 20px 50px;
  display: inline-block; vertical-align: middle;
  opacity: 0;
  position: absolute; top: 44%; right: -170%;
  transform: translateY(-50%);
  transition: all .4s;
  box-sizing: border-box;
}
.cont-streamer .streamer .cont-caption p{
  color: #fff; font-size: 13px;
  line-height: 19px;
  text-align: center; line-height: normal; text-transform: uppercase;
  margin: 0;
}

.cont-streamer .streamer .cont-image{
  display: inline-block; vertical-align: middle;
}
.cont-streamer .streamer .cont-image img{
  margin: 0 auto;
  display: block; vertical-align: middle;
}
.cont-streamer .streamer .cont-image img.on{ 
  position: absolute; left: 50%; top: 50%; z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .4s;
}
.cont-streamer .streamer.on .cont-image img{ opacity: 0; }
.cont-streamer .streamer.on .cont-image img.on{ opacity: 1; }

.cont-streamer .streamer.on:hover .cont-caption{
  left: auto; right: 90%;
  opacity: 1;
}

.fancybox__container{
  --fancybox-backdrop-bg: rgba(10, 6, 5, .8) !important;
}


/* Página */
.kit-welcome{
  display: flex;
  justify-content: center;
}
.kit-welcome img{
  width: 100%;
}




.rank-event{
  max-width: 1200px;
  margin: 14px auto;
  display: flex;
  justify-content: center;
}

.rank-event .card-ranking {
    background: url(../img/BloodCastle.jpg) no-repeat;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    border: solid 1px #39616a;
    filter: brightness(95%);
    box-shadow: inset 0 0 200px #000;
    transition: all .2s;
} 
.rank-event .card-ranking:hover  {
    filter: brightness(115%);
    box-shadow: inset 0 0 150px #000;
}

.rank-event .card-ranking:nth-child(2){ background: url(../img/DevilSquare.jpg) no-repeat; }
.rank-event .card-ranking:nth-child(3){ background: url(../img/Chaos-Castle.jpg) no-repeat; }

.rank-event .card-ranking:nth-child(2),
.rank-event .card-ranking:nth-child(3) {
  margin-left: 3px;
}


.rank-event .card-ranking .label{
  background-color: #02afe3;
  color: #000;
}

/* Ajuste para diseño horizontal en Bootstrap 3 */
.rank-event .ranking-horizontal {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.rank-event .ranking-col {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.rank-event .text-uppercase-spaced {
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 700;
  color: #ffe1c2;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.rank-event .winner-name {
  color: #00c4ff;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-event .winner-name img{
  width: auto; height: 25px;
  display: inline-block; vertical-align: middle;
  position: relative; top: -1px;
}

.rank-event .score-value {
  font-size: 22px;
  font-weight: bold;
  color: #f3a14d; /* Bootstrap 3 Primary */
  line-height: 1;
}

.rank-event .score-total-label {
  font-size: 9px;
  color: #ffe1c2;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}






.rank-duel{
max-width: 1200px;
margin: 14px auto;
display: flex;
justify-content: center;
}

.rank-duel .card-ranking {
  background: url('../img/BattleRoyal.jpg') no-repeat;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  border: solid 1px #772c2c;
  filter: brightness(95%);
  box-shadow: inset 0 0 200px #000;
  transition: all .2s;
} 
.rank-duel .card-ranking:hover  {
  filter: brightness(115%);
  box-shadow: inset 0 0 150px #000;
}

.rank-duel .card-ranking:nth-child(2){ background: url('../img/Duel.jpg') no-repeat; margin-left: 3px; }

/* Ajuste para diseño horizontal en Bootstrap 3 */
.rank-duel .ranking-horizontal {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.rank-duel .ranking-col {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}


.rank-duel .text-uppercase-spaced {
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 700;
  color: #ffe1c2;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 5px;
}

.rank-duel .winner-name {
  color: #de3838;
  font-size: 24px; font-weight: bold;
  text-transform: none;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-duel .winner-name img{
  width: auto; height: 29px;
  display: inline-block; vertical-align: middle;
  position: relative; top: -1px;
}

.rank-duel .score-value {
  font-size: 30px; 
  font-weight: bold;
  color: #f3a14d; /* Bootstrap 3 Primary */
  line-height: 1;
}
.rank-duel .ranking-col:nth-child(3) .score-value {
  font-size: 22px;
}

.rank-duel .score-total-label {
  font-size: 12px;
  color: #ffe1c2;
  text-transform: uppercase;
  display: block;
  margin-top: 2px; 
}










/* Clase específica para el contenedor PK */
.rank-pk {
    max-width: 1200px;
    margin: 0 auto;
}

.rank-pk .ranking-horizontal {
    background: url('../img/PK.jpg') no-repeat;
    margin-left: 3px; 
    padding: 0 10px;
    display: flex;
    align-items: center;
    filter: brightness(95%);
    box-shadow: inset 0 0 200px rgb(51 4 4);
    transition: all .2s;
} 

.rank-pk .ranking-horizontal:hover  {
    filter: brightness(115%);
    box-shadow: inset 0 0 150px rgb(51 4 4);
}

.rank-pk .text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #dc3545;
    display: block;
}

.rank-pk .winner-name { 
    font-weight: bold;
    color: #ffe1c2; font-size: 28px;
    margin: 0; padding: 0;
}

.rank-pk .winner-name img{
  width: auto; height: 34px;
  display: inline-block; vertical-align: middle;
  position: relative; top: -1px;
}

.rank-pk .score-value {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.2;
}

.rank-pk .score-total-label {
    display: block;
    font-size: 12px;
    color: #dddcdc;
    text-transform: uppercase;
    margin-top: 2px;
}



.section-float-left{
  background: url('../img/background/bg_section_c.jpg') top left no-repeat; 
  width: 61px; height: 328px;
  display: inline-block; vertical-align: top;

  position: fixed; top: 50%; z-index: 15;
  transform: translateY(-50%);
}

.section-float-left ul li{
  padding: 15px 0 0 0;
}
.section-float-left ul li:nth-child(2n){
  padding: 9px 0 0 0;
}
.section-float-left ul li:nth-child(3n){
  padding: 11px 0 0 0;
}
.section-float-left ul li:nth-child(4n){
  padding: 20px 0;
}
.section-float-left ul li a{
  position: relative;
}
.section-float-left ul li a img{
  margin: 0 auto;
  display: block;
  transition: all .3s;
}
.section-float-left ul li a img.hover{
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}
.section-float-left ul li a:hover img.hover{ opacity: 1; }

.f-button.is-arrow.is-prev,
.f-button.is-arrow.is-next{ display: none !important; }




/* --- SELECTOR DE JUEGOS --- */
#gameSelectorWrapper {
    position: relative;
    max-height: 0;
    overflow: hidden;
    background: var(--panel-bg);
    transition: max-height var(--transition-speed) var(--easing), 
                border-bottom var(--transition-speed) var(--easing);
    z-index: 100;
    border-bottom: 0px solid var(--accent);
}

#gameSelectorWrapper.show {
    max-height: 500px;
    border-bottom: 2px solid var(--accent);
}

#dynamic-bg-internal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: background-image 1.2s var(--easing), transform 2s var(--easing), opacity 0.8s var(--easing);
    pointer-events: none;
    filter: saturate(0.8) brightness(0.6);
    background-image: url('https://mueternity.com/templates/template4/img/bg-muonline-header.jpg');
}

.bg-zoom {
    transform: scale(1.1);
    opacity: 0.4 !important;
}

.internal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent, rgba(0,0,0,0.8));
    pointer-events: none;
}

.selector-container {
    position: relative;
    padding: 70px 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    z-index: 3;
    transform: translateY(-30px) scale(0.98);
    transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
    transition-delay: 0.1s;
}

#gameSelectorWrapper.show .selector-container {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.game-nav-item {
    position: relative;
    width: 260px; height: 160px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--easing);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 12px; /* Reemplazo de gap */
}

.game-nav-item:hover, .game-nav-item.active {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-8px);
}

.game-nav-item img {
    max-width: 90%;
    height: auto; max-height: 88px;
    object-fit: contain;
    transition: all 0.5s var(--easing);
    filter: grayscale(1) brightness(0.7);
}

.game-nav-item:hover img, .game-nav-item.active img {
    filter: grayscale(0) brightness(1.2);
    transform: scale(1.1);
}


.active .nav-label { color: var(--accent); }

/* --- CINTA DE COMANDO --- */
.cmd-ribbon {
    background: #000;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    position: relative;
    z-index: 110;
}

.cmd-content {
    display: flex;
    align-items: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 10px;
    color: #fff;
    letter-spacing: 2px;
}

.status-indicator {
    display: flex;
    align-items: center;
    padding: 5px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-right: 25px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

.rotated { transform: rotate(180deg); }

/* --- CONTENIDO PRINCIPAL --- */ 
.main-portal {
    transition: opacity 0.6s var(--easing), transform 0.6s var(--easing), filter 0.6s var(--easing);
    z-index: 10;
}

.content-blurred {
    filter: blur(8px) saturate(1.2);
    transform: scale(0.99);
    pointer-events: none;
    opacity: .4;
}


/* Helpers BS3 */
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }

@media (max-width: 768px) {
    .selector-container { flex-direction: column; align-items: center; padding: 40px 0; }
    .game-nav-item { width: 90%; height: 100px; margin-bottom: 15px; }
    .glitch-title { font-size: 30px; }
}




.requirement-table {
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
}

.table-header {
    display: flex;
    background: rgb(0 0 0 / 11%);
    border-bottom: 1px solid #333;
}

.header-col {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.header-col i{
  margin-right: 8px; vertical-align: middle; 
}

.row-spec {
    display: flex;
    border-bottom: 1px solid #1e1e1e;
    transition: background 0.2s;
}

.row-spec:hover {
    background: #ffffff08;
}

.spec-label {
    flex: 0 0 30%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.02);
    color: #888;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}
.spec-label i{ margin-right: 8px; vertical-align: middle; }

.spec-value {
    flex: 1;
    padding: 15px 20px;
    border-left: 1px solid #1e1e1e;
}

.min-val { color: var(--mu-gold); text-align: center; }
.rec-val { color: var(--mu-blue); text-align: center; }
 
.tech-support-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-left: 5px solid var(--mu-red);
    overflow: hidden;
}
.tech-support-bar h4{
  font-size: 32px; 
  margin-bottom: 20px;
  position: relative;
}
.tech-support-bar h4 i{
  font-size: 150px;
  position: absolute;
  margin: -16%;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: .1;
}
.tech-support-bar p{
  color: #fff;
  line-height: 24px;
}


.tech-support-bar .text-lg-end{
    border-left: solid 1px hsl(0deg 0% 100% / 13%);
}

.btn-download {
    background: rgba(255, 77, 77, 0.1);
    color: var(--mu-red);
    border: 1px solid rgba(255, 77, 77, 0.3);
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
    margin: 4px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--mu-red);
    color: white;
    transform: scale(1.05);
}

.min-val .status-pill {
    background: var(--mu-gold);
}

.status-pill {
  color: #211715;
    font-size: 0.7em;
    padding: 2px 10px;
    border-radius: 10px;
    background: var(--mu-blue);
    margin-left: 10px;
}

.input-group-addon{
  background: #111111;
  color: #ad908a;
  border-left: 1px solid #705954;
  border-top: 1px solid #705954;
  border-bottom: 1px solid #705954;
}

input:-internal-autofill-selected{
  background-color: #111111 !important;
}
.modal-content .form-horizontal label{
  text-shadow: 0 0 8px BLACK, 0 0 8px BLACK, 0 0 8px BLACK;
}

.progress{
  background-color: #3d1813;
}












/* =======================================================
   ESTILO CRIMSON GLOW MEJORADO (Diseño Gaming Profesional)
   ======================================================= */
.statssrv {
    background: #060202b5; /* Fondo ultra oscuro profundo */
    width: 605px;
    border: 1px solid rgb(185 15 15 / 68%); /* Borde rojo sutil */
    padding: 16px 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 
                inset 0 0 15px rgba(220, 38, 38, 0.08); /* Glow interno */
    font-family: 'Montserrat', 'Outfit', sans-serif;
    box-sizing: border-box;

    position: absolute; z-index: 5; bottom: -2px; left: 50%;
    transform: translateX(-50%);
}

/* Contenedor principal de columnas */
.statssrv .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Columnas individuales */
.statssrv .col {
    flex: 1 1 calc(25% - 12px);
    min-width: 150px;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff; /* Texto de los valores en blanco puro */
    font-size: 1.35rem; /* Tamaño destacado */
    font-weight: 800; /* Super negrita para los números */
    letter-spacing: -0.01em;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto hover interactivo sobre las columnas */
.statssrv .col:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
}

/* Iconos SVG personalizados con efecto Neón */
.statssrv .col svg {
    width: 26px;
    height: 26px;
    fill: #ff2222; /* Color rojo gaming vivo */
    margin-bottom: 12px;
    filter: drop-shadow(0 0 6px rgba(255, 34, 34, 0.85)) 
            drop-shadow(0 0 12px rgba(255, 34, 34, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.statssrv .col:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(255, 34, 34, 1)) 
            drop-shadow(0 0 20px rgba(255, 34, 34, 0.6));
}

/* Etiquetas superiores (VERSIÓN, DROP, etc.) */
.statssrv .col span {
    display: block;
    font-size: 0.68rem; /* Tamaño compacto e ideal */
    font-weight: 700;
    color: #7a828a; /* Color gris metálico de la imagen */
    text-transform: uppercase;
    letter-spacing: 0.16em; /* Separación de caracteres sofisticada */
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

/* DIVISORES INTELIGENTES RESPONSIVOS (Reemplaza las líneas rígidas) */
@media (min-width: 768px) {
    /* En computadoras/tablets, los divisores son verticales */
    .statssrv .col:not(:last-child) {
        border-right: 1px solid rgb(183 92 92 / 33%);
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    /* En celulares, los divisores pasan a ser horizontales */
    .statssrv .col {
        flex: 1 1 100%;
        padding: 16px 0;
    }
    .statssrv .col:not(:last-child) {
        border-bottom: 1px solid rgba(220, 38, 38, 0.12);
        border-right: none;
    }
}