* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Wremena';
  font-weight: bold;
  background-color: #12100d;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background-color: #74592c;
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
  min-width: 0%;
  z-index: 200;
}

.fixed {
  background-color: rgba(0, 0, 0, 0.651);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none !important;
}
.page_headerLogo__rVpXD {
    width: 23rem;
    margin-bottom: 1.0rem;
    position: relative;
    z-index: 0;
    transition: transform 0.3s ease; /* Agregamos una transición suave */
}

.page_headerLogo__rVpXD:hover {
    transform: scale(1.2); /* Escalamos la imagen al 110% al pasar el mouse por encima */
}


.social {
  position: fixed;
  right: 30px;
  top: 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}

.social .rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-bottom: 35px;
}

.social span img {
  width: 20px;
  opacity: 0.4;
}

.social a {
  margin-bottom: 30px;
}

.social a:hover i {
  color: #ffe0ac;
  text-shadow: 0px 0px 20px #f7a832;
}

.social a .fa-discord {
  font-size: 26px;
}

.social a i {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.61);
  -webkit-transition: .5s;
  transition: .5s;
}

.youtube-videos {
  position: fixed;
  width: 300px;
  left: -300px;
  -webkit-transition: .5s;
  transition: .5s;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.877);
  overflow-y: scroll;
  padding: 30px;
  scrollbar-width: thin;
  scrollbar-color: #3d2c15 black;
  padding-right: 20px;
  z-index: 200;
}

.youtube-videos.active {
  left: 0 !important;
}

.youtube-videos::-webkit-scrollbar {
  width: 7px;
  background-color: #181818;
  border-radius: 20px;
}

.youtube-videos::-webkit-scrollbar-track {
  width: 7px;
  background-color: #181818;
  border-radius: 20px;
}

.youtube-videos::-webkit-scrollbar-thumb {
  width: 7px;
  background-color: #3d2c15;
  border-radius: 20px;
}

.youtube-videos iframe:not(:last-child) {
  margin-bottom: 20px;
}

.youtube-videos iframe {
  width: 100%;
  height: 120px;
  border: none;
}

.youtube {
  position: fixed;
  left: 30px;
  top: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  -webkit-transition: .5s;
  transition: .5s;
}

.youtube.active {
  left: 330px !important;
}

.youtube .rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-bottom: 35px;
}

.youtube span img {
  width: 20px;
  opacity: 0.4;
}

.youtube a {
  margin-bottom: 30px;
  cursor: pointer;
}

.youtube a:hover i {
  color: #ffe0ac;
  text-shadow: 0px 0px 20px #f7a832;
}

.youtube a i {
  font-size: 30px;
  -webkit-animation: glow 2s infinite;
          animation: glow 2s infinite;
  -webkit-transition: .5s;
  transition: .5s;
}

@-webkit-keyframes glow {
  0% {
    color: rgba(255, 255, 255, 0.61);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    color: #ffe0ac;
    text-shadow: 0px 0px 20px #f7a832;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    color: rgba(255, 255, 255, 0.61);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes glow {
  0% {
    color: rgba(255, 255, 255, 0.61);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    color: #ffe0ac;
    text-shadow: 0px 0px 20px #f7a832;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    color: rgba(255, 255, 255, 0.61);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.content-menu {
  position: absolute;
  width: 100%;
  top: 70px;
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px 0px 10px;
  z-index: 10;
  -webkit-transition: .5s;
  transition: .5s;
}

.content-menu .content-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-menu .content-menu-link a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.content-menu .content-menu-link a {
  text-decoration: none;
  color: #656564;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
  margin: 20px;
  padding-right: 40px;
  -webkit-transition: .5s;
  transition: .5s;
}

.content-menu .content-menu-link a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10px;
  height: 10px;
  border: 2px solid #656564;
  border-radius: 100%;
  display: none;
}

.content-menu .content-menu-link a:hover {
  color: #db9e35;
}

.content-menu .content-menu-link a.active {
  color: #db9e35;
}

.content-menu .content-menu-link a.active span {
  border: 2px solid #ffc156;
}

.content-menu .content-menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-menu .content-menu-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 40px;
  background: linear-gradient(152deg, #ffc156, #ca9537);
  text-decoration: none;
  text-transform: uppercase;
  color: #291004;
  -webkit-clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
          clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  -webkit-transition: .5s;
  transition: .5s;
}

.content-menu .content-menu-button a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.container {
  width: 1250px;
  margin: 0 auto;
}

.top {
  overflow: hidden;
  padding-bottom: 10px;
  position: relative;
}
page_off__RxrD2,.page_on__3q1Hi {
    display: flex;
    align-items: center;
    padding: 0 1.1rem 0 1rem;
    margin-left: .1rem;
    border-right: .01rem solid hsla(0,0%,100%,.01)
}
.page_inner__sfo2e {
    min-height: 100vh;
    width: 100%;
    padding: 7rem 0 0;
    background: url(../img/media/page-texture.f3297df6.jpg) top/cover no-repeat;
    position: relative
}

.page_inner__sfo2e:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40rem;
    background: url(../img/media/3.17545e18.jpg) top/cover no-repeat;
    -webkit-mask: linear-gradient(0deg,transparent 0,#fff 30%);
    mask: linear-gradient(0deg,transparent 0,#fff 30%)
}

.page_innerContent__ZhBwG {
    width: 85%;
    margin: 0 auto;
    padding-bottom: 7rem;
    min-height: 80vh;
    position: relative;
    z-index: 1
}

.page_innerContentDonate__I3e0a,.page_innerContentRead__Lnd8B {
    width: 55%
}

.page_innerContentAbout__mrO17 {
    width: 75%
}

.page_innerContentAbout__mrO17 .page_innerTitle__0wY_W {
    padding-left: .7rem
}

.page_aboutInner__jls5W {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.page_aboutNav__3eYrk {
    width: 28%;
    position: -webkit-sticky;
    position: sticky;
    top: 4.7rem;
    height: 74vh
}

.page_aboutNav__3eYrk ul {
    height: 100%;
    overflow-y: auto;
    padding: 0 1rem 0 .5rem
}

.page_aboutNav__3eYrk ul::-webkit-scrollbar {
    background-color: rgba(0,0,0,.171);
    width: .15rem;
    border-radius: 2rem
}

.page_aboutNav__3eYrk ul::-webkit-scrollbar-thumb {
    background-color: rgba(111,59,31,.826);
    width: .15rem;
    border-radius: 2rem
}

.page_aboutNav__3eYrk li button {
    padding: .8rem 1.5rem;
    border: none;
    background-color: rgba(44,27,19,.704);
    outline: none;
    color: hsla(0,0%,100%,.61);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: .5s;
    position: relative;
    box-shadow: 0 .7rem 1rem rgba(0,0,0,.2);
    cursor: pointer;
    font-size: .65rem
}

.page_aboutNav__3eYrk li button:hover {
    color: #fff;
    background-color: rgba(69,39,26,.797)
}

.page_aboutNav__3eYrk li button:after {
    content: "";
    position: absolute;
    border: 1.2rem solid transparent;
    border-image: url(../img/media/frame.f8711fc6.png);
    border-image-slice: 60 83 fill;
    left: -.22rem;
    filter: brightness(150%);
    right: -.22rem;
    bottom: -.15rem;
    top: -.15rem;
    z-index: 2;
    pointer-events: none;
    opacity: .6
}

.page_aboutNav__3eYrk li:not(:last-child) {
    margin-bottom: .6rem
}

.page_aboutNav__3eYrk li button div img {
    width: 1.7rem;
    position: absolute
}

.page_aboutNav__3eYrk li button div {
    position: relative;
    font-size: .5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    margin-right: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.page_aboutInfo__LwPOO {
    width: 70%
}

.page_aboutInfo__LwPOO .page_aboutInfoContent__AYFu_:not(:last-child) {
    margin-bottom: 2rem
}

.page_aboutInfo__LwPOO .page_aboutInfoContent__AYFu_ {
    position: relative;
    padding: 3rem 3rem 2rem;
    background-color: #1d1914;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.15)
}
.page_aboutInfo__LwPOO .page_aboutInfoContent__AYFu_:after {
    content: "";
    position: absolute;
    border: 1.2rem solid transparent;
    border-image: url(../img/media/frame.f8711fc6.png);
    border-image-slice: 60 83 fill;
    left: -.22rem;
    filter: brightness(150%);
    right: -.22rem;
    bottom: -.15rem;
    top: -.15rem;
    z-index: 2;
    pointer-events: none;
    opacity: .3
}

.page_donatePay__9Xq6t {
    width: 50%;
    margin: 0 auto;
    height: 2.5rem
}

rmsg {
    display: table;
    width: 360px;
    margin: 0 auto 20px auto;
    padding: 10px;
    background: #108c00;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.rmsg.error {
    background-color: #b30000 !important;
}

.rmsg.warn {
    background-color: #fffca1 !important;
    color: #000 !important;
}

#alerta {
    visibility: hidden;
    position: fixed;
    display: table;
    z-index: 1001;
    margin: 0 auto;
    padding: 25px 30px;
    color: #5a5a5a;
    font-size: 15px;
    background: #f7f7f7;
    border-radius: 6px;
}

#alerta .ok {
    display: table;
    width: 100%;
}

#alerta .ok > div {
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: table;
    float: right;
    margin: 15px 0 0 0;
    padding: 5px 0;
    text-align: center;
    width: 60px;
    text-transform: uppercase;
    color: #fff;
    background: #ac0f0f;
    border: 1px solid #ac0f0f;
    box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset;
    border-radius: 4px;
}

#alerta .ok > div:hover {
    background: #d21818;
    border-color: #d21818;
}

#alerta .ok.sucesso > div {
    background: #0dbb00;
    border: 1px solid #0dbb00;
}

#alerta .ok.sucesso > div:hover {
    background: #0a8c00;
    border: 1px solid #0a8c00;
}
table.default {
    width: 100%;
    background: 0;
    overflow: hidden;
}

table.default tr td:first-child {
    border: 0;
}

table.default tr td {
    font-size: 12px;
    padding: 6px 8px;
    border-left: 1px solid #350202;
    background: rgba(0,0,0,0.1);
    color: #fff;
}

table.default tr td b {
    color: #fff;
}

table.default tr.two td {
    background: rgba(255,255,255,0.05);
}

table.default tr td.foco {
    font-weight: bold;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

table.default tr.two td.foco {
    background: rgba(255,255,255,0.1);
}

table.default tr th {
    font-family: TBOLD, Arial;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    background: #fff;
    color: #000;
    padding: 10px 0;
    border-left: 1px solid #350202;
}

table.default tr.ctype2, table.default tr.ctype2 td {
    padding: 0;
    margin: 0;
    height: 2px;
    background: #fff;
}

table.default .pos {
    width: 25px;
    text-align: center;
}

.horMenu {
    display: table;
    margin: 20px auto;
}

.horMenu a {
    float: left;
    padding: 10px 15px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    margin: 0 0 0 10px;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255,255,255,0.6) !important;
}

.horMenu a:first-child {
    margin: 0;
}

.horMenu a:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.horMenu a.act {
    cursor: default;
    border-color: #fff !important;
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
}

.horMenu a:active {
    opacity: 0.6;
}

.horMenu.ranks a {
    padding: 10px 10px;
}

.rulesbox, .rulesbox .pddInner {
    text-align: left !important;
}

.rulesbox {
    height: 260px;
    box-sizing: border-box;
    overflow: auto;
    margin: 0 auto 20px;
    padding: 20px;
    width: calc(100% - 20px);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
}

.rulesbox h1 {
    padding-top: 0;
    background: transparent !important;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0 0 20px 20px;
    font-size: 20px;
}

.formpadrao, .formpadrao > div, .formpadrao .camp input, .formpadrao .camp select {
    border-radius: 2px;
}

.formpadrao {
    display: table;
    margin: 0 auto 2px auto;
    padding: 2px;
}

.formpadrao > div {
    display: table;
}

.formpadrao .desc {
    width: 200px;
    padding: 0 10px;
    color: #fff;
    font-family: TBOLD, Arial;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    text-align: right;
}

.formpadrao .desc, .formpadrao .camp, .formpadrao .camp2 {
    float: left;
    height: 46px;
    line-height: 46px;
}

.formpadrao .camp input[type="text"], .formpadrao .camp input[type="password"], .formpadrao .camp input[type="file"] {
    border: 0;
    width: 230px;
    margin: 5px 5px 0 0;
    height: 36px;
    line-height: 36px;
    padding: 0 5px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.4) inset;
}

.formpadrao .camp select {
    border: 0;
    width: 240px;
    margin: 5px 5px 0 0;
    padding: 9px 7px 8px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.4) inset;
}

.formpadrao textarea {
    border: 0;
    resize: vertical;
    height: 300px;
    width: 200px;
    margin: 0 4px 10px 0;
    padding: 5px;
}

.formpadrao.tdate .camp input {
    text-align: center;
    padding: 0 9px;
}

.formpadrao.errorc, .formpadrao.errorc .desc, .formpadrao.errorc .camp {
    border-color: #c70000;
}

.formpadrao.errorc > div {
    background: #c70000;
}

.formpadrao.errorc .desc {
    color: #fff;
}

.formpadrao {
    border: 1px solid rgba(0,0,0,0.7);
}

.formpadrao > div {
    background: #200303;
}

.formpadrao .desc {
    color: #fff;
}

.formpadrao .camp input[type="text"], .formpadrao .camp input[type="password"], .formpadrao .camp input[type="file"], .formpadrao .camp select, .formpadrao textarea {
    background: #fff;
}

.formpadrao .camp input[type="text"]:focus, .formpadrao .camp input[type="password"]:focus, .formpadrao .camp select:hover, .formpadrao textarea:focus {
    background: #fffbd5;
}
.page_newsReadHeader__via7x ul li {
    margin-right: 1rem;
    font-size: .6rem;
    color: hsla(0,0%,100%,.2)
}

.page_newsReadHeader__via7x ul li a {
    color: hsla(0,0%,100%,.39);
    display: flex;
    align-items: center
}

.page_newsReadHeader__via7x ul li a:hover {
    color: #fff
}

.page_aboutInfoContent__AYFu_ h1,.page_newsReadContent__KN5vb h1 {
    font-size: 2rem;
    margin-bottom: .5rem;
    background: -webkit-linear-gradient(top,#fffcf5,#d8be9c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.page_aboutInfoContent__AYFu_ p,.page_newsReadContent__KN5vb p {
    font-size: .8rem;
    line-height: .85rem;
    margin-bottom: 2rem;
    color: hsla(38,45%,83%,.512)
}

.page_aboutInfoContent__AYFu_ ul,.page_newsReadContent__KN5vb ul {
    padding: 0 3rem;
    margin-bottom: 2rem
}

.page_aboutInfoContent__AYFu_ ul li,.page_newsReadContent__KN5vb ul li {
    font-size: .8rem;
    color: hsla(32,56%,86%,.855);
    position: relative;
    line-height: .85rem
}

.page_aboutInfoContent__AYFu_ ul li strong,.page_newsReadContent__KN5vb ul li strong {
    font-weight: 600;
    color: #fff
}

.page_aboutInfoContent__AYFu_ ul li:before,.page_newsReadContent__KN5vb ul li:before {
    content: "";
    position: absolute;
    left: -1rem;
    width: .3rem;
    border-radius: 100%;
    height: .3rem;
    background: url(../img/media/orange.62deebe9.gif) top/cover repeat;
    top: .2rem;
    border: .04rem solid rgba(255,166,0,.721)
}

.page_aboutInfoContent__AYFu_ ul li:not(:last-child),.page_newsReadContent__KN5vb ul li:not(:last-child) {
    margin-bottom: 1.8rem
}

.page_aboutInfoContent__AYFu_ table,.page_newsReadContent__KN5vb table {
    width: 100%;
    position: relative;
    margin: 2rem 0
}

.page_aboutInfoContent__AYFu_ table:after,.page_newsReadContent__KN5vb table:after {
    content: "";
    position: absolute;
    border: .9rem solid transparent;
    border-image: url(../img/media/frame.f8711fc6.png);
    border-image-slice: 60 82 fill;
    left: -.22rem;
    filter: brightness(150%);
    right: -.22rem;
    bottom: -.15rem;
    top: -.15rem;
    z-index: 2;
    pointer-events: none;
    opacity: .5
}

.page_aboutInfoContent__AYFu_ table tr,.page_newsReadContet__uN_sG table tr {
    text-align: center
}

.page_aboutInfoContent__AYFu_ table tr th,.page_newsReadContent__KN5vb table tr th {
    padding: .7rem;
    font-weight: 400;
    font-size: .65rem;
    background-color: #e16714;
    color: hsla(32,56%,86%,.855)
}

.page_aboutInfoContent__AYFu_ table tr td,.page_newsReadContent__KN5vb table tr td {
    text-align: center;
    padding: .7rem;
    font-size: .6rem;
    background-color: rgba(43,32,26,.297);
    color: hsla(38,45%,83%,.512)
}
label.captcha {
    position: relative;
}

label.captcha img.captchaImage {
    position: absolute;
    left: 8px;
    top: 3px;
    opacity: 0.8;
    border-radius: 3px;
}

label.captcha a {
    position: absolute;
    right: 13px;
    top: 13px;
}

label.captcha a, label.captcha a img {
    width: 23px;
    height: 23px;
}

label.captcha a:hover {
    opacity: 0.7;
}

label.captcha a:active {
    opacity: 1;
}

.page_on__3q1Hi .page_onCircle__qjeZh {
    box-shadow: 0 0 .5rem #caff39;
    border: .04rem solid #e1ff00;
    border-radius: 100%;
    background: url(../img/media/green.08b147c9.gif) top/cover no-repeat
}

.page_off__RxrD2 .page_offCircle__5qzT_,.page_on__3q1Hi .page_onCircle__qjeZh {
    position: relative;
    margin-right: .8rem;
    width: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: .5rem;
    top: -.07rem;
    font-weight: 700
}

.page_off__RxrD2 .page_offCircle__5qzT_ {
    box-shadow: 0 0 .5rem #ff3939;
    border: .04rem solid red;
    border-radius: 100%;
    background: url(../img/media/red.dc25aa82.gif) top/cover no-repeat
}

.page_off__RxrD2 div img,.page_on__3q1Hi div img {
    position: absolute;
    width: 1.1rem!important
}

.page_off__RxrD2 div,.page_on__3q1Hi div {
    display: flex;
    flex-direction: column
}

.page_on__3q1Hi div p:first-child {
    color: #adff2f;
    margin-bottom: .05rem
}

.page_off__RxrD2 div p:first-child {
    color: #ff2f2f;
    margin-bottom: .05rem
}

.page_off__RxrD2 div p:nth-child(2),.page_on__3q1Hi div p:nth-child(2) {
    font-size: .5rem;
    color: hsla(0,0%,100%,.541)
}

.page_nav__ijo23 {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    z-index: 999;
    height: 2.8rem;
    padding: 0 1rem;
    transition: .5s;
    background-color: rgba(15,13,12,.692)
}

.page_nav__ijo23 ul:first-child li a .page_lineMenu__LHavn {
    width: 7rem;
    position: absolute;
    bottom: -.8rem;
    opacity: 0
}

.page_nav__ijo23 ul:first-child li a.page_active__9fwfh {
    color: #fff
}

.page_lang__RTnxr {
    position: relative;
    justify-content: center;
    font-size: .6rem;
    height: 100%;
    padding: 0 1rem;
    margin-right: .5rem
}

.page_lang__RTnxr,.page_lang__RTnxr span {
    display: flex;
    align-items: center;
    cursor: pointer
}

.page_lang__RTnxr:hover span {
    color: #fff
}

.page_lang__RTnxr:hover .page_langDropdown__uZ1Hm {
    opacity: 1;
    transform: scaleY(100%);
    top: 90%
}

.page_lang__RTnxr svg {
    filter: invert(100%);
    font-size: .72rem;
    margin-right: .35rem;
    opacity: .4;
    position: relative;
    top: -.05rem
}

.page_lang__RTnxr .page_langDropdown__uZ1Hm {
    position: absolute;
    top: 70%;
    padding: 1rem .6rem;
    background-color: #24201a;
    display: flex;
    transition: .5s;
    align-items: center;
    justify-content: center;
    border-radius: .1rem;
    flex-wrap: wrap;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0
}

.page_langDropdown__uZ1Hm:after {
    content: "";
    position: absolute;
    border: .9rem solid transparent;
    border-image: url(../img/media/frame.f8711fc6.png);
    border-image-slice: 60 70 fill;
    left: -.22rem;
    filter: brightness(150%);
    right: -.22rem;
    bottom: -.15rem;
    top: -.15rem;
    z-index: 2;
    pointer-events: none
}

.page_lang__RTnxr .page_langOption__vfLVf {
    width: 100%;
    color: hsla(0,0%,100%,.485);
    border: none;
    font-size: .55rem;
    background: none;
    font-weight: 400;
    transition: .5s;
    cursor: pointer
}
.top .top-content {
  z-index: 1;
  text-align: center;
  padding-top: 50px;
}

.top .top-content .top-content-play {
  margin-top: -25px; /* Puedes ajustar este valor */

}

.top .top-content .top-content-play p {
  color: white;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

.top .top-content .top-content-play p span {
  color: #d69f50;
}

.top .top-content .top-content-play a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 440px;
  height: 83px;
  color: #22150b;
  font-size: 28px;
  background: url(../images/button/1.png);
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

.top .top-content .top-content-play a:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.top .top-content h1 {
  color: white;
  text-transform: uppercase;
  font-size: 25px;
  background: linear-gradient(365deg, white, #ffce5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
}

.top .top-content .top-content-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 90px;
}

.top .top-content .top-content-features div {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.top .top-content .top-content-features div span {
  margin-right: 20px;
}

.top .top-content .top-content-features div p {
  text-align: left;
  font-weight: normal;
  font-size: 18px;
  color: white;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.582);
}

.top .top-logo {
  display: none;
  z-index: 1;
}

.top .top-background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: -1;
}

.top .top-background img {
  -webkit-animation: scale 3s infinite;
          animation: scale 3s infinite;
}

.features {
  padding-top: 133px;
  padding-bottom: 92px;
  color: white;
  background: url(../images/bg/2.jpg) top no-repeat;
  position: relative;
  text-align: center;
}

.features h1 {
  color: white;
  text-transform: uppercase;
  font-size: 52px;
  background: linear-gradient(365deg, white, #ffce5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
  letter-spacing: -1px;
}

.features .line {
  position: absolute;
  background: url(../images/line.png) top repeat;
  height: 25px;
  width: 100%;
  top: -10px;
}

.features .features-swiper {
  padding-top: 70px;
}

.features .features-swiper .swiper-slide {
  height: 550px;
  background-color: gray;
  -webkit-clip-path: polygon(5% 0, 100% 0, 100% 88%, 95% 100%, 0 100%, 0 12%);
          clip-path: polygon(5% 0, 100% 0, 100% 88%, 95% 100%, 0 100%, 0 12%);
  overflow: hidden;
  position: relative;
}

.features .features-swiper .swiper-slide .features-swiper-background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.features .features-swiper .swiper-slide .features-swiper-text {
  position: absolute;
  left: 110px;
  bottom: 90px;
  z-index: 5;
  width: 60%;
}

.features .features-swiper .swiper-slide .features-swiper-text h1 {
  text-align: left;
  font-size: 48px;
  margin-bottom: 25px;
}

.features .features-swiper .swiper-slide .features-swiper-text p {
  text-align: left;
  font-weight: normal;
  line-height: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.features .features-swiper .swiper-slide .features-swiper-text a {
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 50px;
  background: linear-gradient(152deg, #ffc156, #ca9537);
  text-decoration: none;
  text-transform: uppercase;
  color: #291004;
  -webkit-clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
          clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  -webkit-transition: .5s;
  transition: .5s;
}

.features .features-swiper .swiper-slide .features-swiper-text a:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.features .features-swiper .swiper-slide .features-swiper-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(25deg, #1b1b1b, #1b1b1baf, transparent);
  z-index: 2;
}

.features .features-content {
  position: relative;
  margin-top: 60px;
}

.features .features-content .swiper-button-next {
  width: 45px;
  height: 45px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #242424;
  color: rgba(255, 255, 255, 0.4);
  top: 56px;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 2;
}

.features .features-content .swiper-button-next:hover {
  color: white;
}

.features .features-content .swiper-button-next i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.features .features-content .swiper-button-prev {
  width: 45px;
  height: 45px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #242424;
  color: rgba(255, 255, 255, 0.4);
  top: 56px;
  z-index: 2;
  -webkit-transition: .5s;
  transition: .5s;
}

.features .features-content .swiper-button-prev:hover {
  color: white;
}

.features .features-content .swiper-button-prev i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.features .features-content .features-swiper {
  overflow: hidden;
}

.features .features-content .features-controls {
  margin-bottom: 150px;
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
}

.features .features-content .features-controls .swiper-slide-thumb-active .features-title {
  color: white !important;
}

.features .features-content .features-controls .swiper-slide-thumb-active .features-icon {
  border: 3px solid #90732d !important;
}

.features .features-content .features-controls .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  cursor: pointer;
}

.features .features-content .features-controls .swiper-slide:hover .features-title {
  color: white;
}

.features .features-content .features-controls .swiper-slide:hover .features-icon {
  border: 3px solid #90732d;
}

.features .features-content .features-controls .swiper-slide .features-title {
  text-align: left;
  color: #6a6a6a;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Wrenema';
  -webkit-transition: .5s;
  transition: .5s;
}

.features .features-content .features-controls .swiper-slide .features-icon {
  width: 70px;
  height: 70px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 3px solid #303030;
  padding: 6px;
  margin-right: 40px;
  -webkit-transition: .5s;
  transition: .5s;
}

.features .features-content .features-controls .swiper-slide .features-icon div {
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.features .features-content .features-controls .swiper-slide .features-icon div img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.referral {
  background: url(../images/bg/3.jpg) top no-repeat;
  padding-top: 170px;
  height: 770px;
}

.referral .referral-content h1 {
  color: white;
  text-transform: uppercase;
  font-size: 65px;
  background: linear-gradient(365deg, white, #ffce5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
  letter-spacing: -1px;
  margin-bottom: 30px;
}

.referral .referral-content p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.692);
  font-weight: normal;
  margin-bottom: 40px;
  width: 45%;
}

.referral .referral-content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 50px;
  background: linear-gradient(152deg, #ffc156, #ca9537);
  text-decoration: none;
  text-transform: uppercase;
  color: #291004;
  -webkit-clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
          clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  -webkit-transition: .5s;
  transition: .5s;
}

.referral .referral-content a:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.connect {
  background: url(../images/bg/4.jpg) top no-repeat;
  padding-top: 210px;
  height: 782px;
}

.connect .connect-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.connect .connect-content .connect-content-text {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.connect .connect-content .connect-content-text h1 {
  color: white;
  text-transform: uppercase;
  font-size: 65px;
  background: linear-gradient(365deg, white, #ffce5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.6));
  margin-bottom: 30px;
  line-height: 60px;
}

.connect .connect-content .connect-content-text h1 span {
  font-size: 40px;
}

.connect .connect-content .connect-content-text p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.692);
  font-weight: normal;
  margin-bottom: 40px;
}

.connect .connect-content .connect-content-text a:not(:last-child) {
  margin-bottom: 20px;
}

.connect .connect-content .connect-content-text .blue {
  background: linear-gradient(152deg, #94e2ff, #52bce3);
}

.connect .connect-content .connect-content-text a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 50px;
  background: linear-gradient(152deg, #ffc156, #ca9537);
  text-decoration: none;
  text-transform: uppercase;
  color: #291004;
  -webkit-clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
          clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  -webkit-transition: .5s;
  transition: .5s;
}

.connect .connect-content .connect-content-text a:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

footer {
  background: url(../images/bg/5.jpg) top no-repeat;
  font-family: 'Wremena';
}

footer .container {
  text-align: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}

footer .container .footer-logo {
  margin-bottom: 40px;
}

footer .container .footer-logo img {
  width: 170px;
}

footer .container .footer-copyright {
  margin-bottom: 55px;
}

footer .container .footer-copyright p {
  font-size: 14px;
  font-weight: normal;
  color: #666666;
}

footer .container .footer-links {
  margin-bottom: 20px;
}

footer .container .footer-links a:not(:last-child) {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container .footer-links a {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

footer .container .footer-links a:hover {
  color: #ffc156;
}

footer .container .line {
  background: url(../images/line.png) top repeat;
  height: 25px;
  position: absolute;
  top: -10px;
  width: 100%;
}

.effects {
  position: absolute;
  z-index: 0;
  -webkit-animation: fly 10s infinite linear;
          animation: fly 10s infinite linear;
}

.effects2 {
  position: absolute;
  z-index: 0;
  -webkit-animation: fly 25s infinite linear;
          animation: fly 25s infinite linear;
}

@-webkit-keyframes fly {
  0% {
    top: 200px;
    left: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: -1000px;
    opacity: 1;
    left: -1000px;
  }
}

@keyframes fly {
  0% {
    top: 200px;
    left: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: -1000px;
    opacity: 1;
    left: -1000px;
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (max-width: 768px) {
  .social {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 10px;
  }
  .youtube {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    left: 10px;
  }
  .referral {
    background: url(../images/bg/3-mobile.jpg) top no-repeat;
    padding-top: 500px;
    padding-bottom: 100px;
    height: auto;
  }
  .referral .referral-content {
    text-align: center;
  }
  .referral .referral-content h1 {
    font-size: 40px;
  }
  .referral .referral-content p {
    width: 100%;
  }
  .referral .referral-content a {
    margin: 0 auto;
    float: none;
  }
  .connect {
    background: url(../images/bg/4-mobile.jpg) top no-repeat;
    padding-top: 450px;
    padding-bottom: 100px;
    height: auto;
  }
  .connect .connect-content .connect-content-text {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .connect .connect-content .connect-content-text a {
    float: none;
    margin: 0 auto;
  }
  .connect .connect-content .connect-content-text p {
    text-align: center;
  }
  .connect .connect-content .connect-content-text h1 {
    font-size: 40px;
    text-align: center;
    line-height: 45px;
  }
  .connect .connect-content .connect-content-text h1 span {
    font-size: 30px;
  }
  .features {
    padding-top: 100px;
    background: url(../images/bg/2-mobile.jpg);
  }
  .features h1 {
    font-size: 22px;
    width: 90%;
    margin: 0 auto;
  }
  .features .features-content {
    margin-top: 15px;
  }
  .features .features-content .swiper-button-next {
    background-color: black;
    width: 30px;
    height: 30px;
    top: 62px;
  }
  .features .features-content .swiper-button-prev {
    background-color: black;
    width: 30px;
    height: 30px;
    top: 62px;
  }
  .features .features-content .features-controls {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  .features .features-content .features-swiper {
    padding-top: 30px;
  }
  .features .features-content .features-swiper .swiper-slide {
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 92%, 88% 100%, 0 100%, 0 8%);
            clip-path: polygon(12% 0, 100% 0, 100% 92%, 88% 100%, 0 100%, 0 8%);
  }
  .features .features-content .features-swiper .swiper-slide .features-swiper-text {
    bottom: 60px;
    left: 30px;
    width: 85%;
  }
  .features .features-content .features-swiper .swiper-slide .features-swiper-text h1 {
    font-size: 25px;
  }
  .features .features-content .features-swiper .swiper-slide .features-swiper-text p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 18px;
  }
  .features .features-content .features-swiper .swiper-slide .features-swiper-text a {
    width: 200px;
    margin-top: 25px;
  }
  .top {
    padding-bottom: 60px;
    background: url(../images/bg/mobile.jpg) top no-repeat;
  }
  .top .top-background {
    display: none;
  }
  .top .top-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 180px;
  }
  .top .top-logo img {
    width: 300px;
  }
  .top .top-content {
    padding-top: 40px;
  }
  .top .top-content h1 {
    font-size: 36px;
  }
  .top .top-content .top-content-features {
    margin-top: 30px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .top .top-content .top-content-features div {
    width: 100%;
  }
  .top .top-content .top-content-play {
    padding-top: 30px;
  }
  .top .top-content .top-content-play p {
    font-size: 25px;
  }
  .top .top-content .top-content-play a {
    width: 200px;
    background: url(../images/button/1.png) top/contain no-repeat;
    height: 40px;
    font-size: 22px;
  }
  .content-menu .content-menu-link {
    padding-left: 25px;
  }
  .content-menu .content-menu-link a {
    margin: 0 !important;
    border: none !important;
    padding-right: 10px;
  }
  .content-menu .content-menu-link a p {
    display: none;
  }
  .content-menu .content-menu-link a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .content-menu .content-menu-button a {
    width: 150px;
  }
}

@media (max-width: 1260px) {
  .container {
    width: 90%;
    margin-top: 0 auto;
  }
  .effects {
    display: none;
  }
  .effects2 {
    display: none;
  }
}

@media (min-width: 1920px) {
  .top .top-background img {
    width: 100%;
  }
  .inner .inner-background img {
    width: 100%;
  }
  .loading .loading-background {
    width: 100%;
  }
  .loading .loading-background img {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */

.top .top-content h1 span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 46px;
}
@media (max-width: 768px) {
  .top .top-content h1 span {
    font-size: 30px;
  }
  .l2topzone img {
    width: 50px !important;
  }
  .l2oops img {
    width: 50px !important;
  }
}

.lang-dropdown a.active {
  color: #f7ab29 !important;
}

.contacts-btn {
  justify-content: center;
  display: flex;
  width: 100%;
  height: 50px;
  margin-bottom: 50px;
}
.contacts-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 160px;
  height: 40px;
  background: linear-gradient(153deg, #d5d5d5, #797878);
  text-decoration: none;
  text-transform: uppercase;
  color: #291004;
  -webkit-clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 12px;
}

.contacts-btn a:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.popup__content {
  width: 45%;
  -webkit-transition: .8s;
  transition: .8s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 240px;
  background-color: rgba(0, 0, 0, 0.97);
  border-top: 1px solid #6b4b14;
  padding: 10px 50px 50px 50px;
  color: white;
  font-size: 18px;
  position: relative;
}
.popup__content h2 {
  padding: 10px;
  font-size: 42px;
  margin-bottom: 50px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  padding: 30px 10px;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  visibility: hidden;
  justify-content: center;
  align-items: center;
}
@keyframes fadeout {
  0% { opacity: 1; }
  100% { opacity: 0;}
}

.popup__background {
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
}


.popup._active {
  overflow: auto;
  opacity: 1;
  visibility: visible;
}
.popup__close:hover {
  color: #fff;
  width: 25px;
  height: 25px;
  top: 22px;
  right: 22px;
}
.popup__close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 30;
  width: 20px;
  height: 20px;
  background: url(../img/icons/close.svg) 0 0/contain no-repeat;
  cursor: pointer;
  -webkit-transition: color 0.25s ease 0s;
  -o-transition: color 0.25s ease 0s;
  transition: color 0.25s ease 0s;
}
.indexRank { width: 172px; margin: 0 auto; display: table; font-size: 11px; } .indexRank > div { width: 100%; height: 24px; line-height: 24px; background: transparent url('../imgs/separator_index_rank.png') no-repeat center bottom; display: table; } .indexRank > div > span { float: right; }
.indexRank { color: rgba(255,255,255,0.85); }

.serverStatus.on { background: transparent url('../imgs/server_on.png'); }
.serverStatus.off { background: transparent url('../imgs/server_off.png'); }
.serverStatus { position: relative; margin: 22px auto 5px auto; width: 160px; height: 96px; }

.players_on { width: 160px; height: 25px; line-height: 25px; margin: 0 auto 15px; text-align: center; font-size: 11px; font-weight: bold; font-family: Tahoma; text-transform: uppercase; border-radius: 4px; }
.players_on { background: #340C3E; color: #728c8a; }
.players_on span { color: #0ea500; }

.galleryBox { width: 180px; overflow: hidden; margin: 0 auto; } .galleryBox > div { width: 196px; display: table; } .galleryBox a, .galleryBox a div, .galleryBox a img { width: 52px; height: 52px; } .galleryBox a { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); display: block; position: relative; float: left; padding: 1px; margin: 0 6px 6px 0; border-radius: 4px; overflow: hidden; } .galleryBox a div { border-radius: 4px; position: absolute; top: 1px; left: 1px; transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; } .galleryBox a img { border-radius: 4px; } .galleryBox a span { display: block; width: 20px; height: 20px; position: absolute; left: 17px; top: 17px; background: transparent url('../imgs/nm/play.png') no-repeat; border-radius: 4px; } .galleryBox a:hover { background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.5); } .galleryBox a:hover div { box-shadow: 0 0 10px rgba(255,255,255,0.6) inset; } 

.fullGallery { width: 383px; overflow: hidden; margin: 0 auto; padding: 20px 0 0 0; } .fullGallery > div { width: 398px; display: table; } .fullGallery a, .fullGallery a div, .fullGallery a img { width: 88px; height: 88px; } .fullGallery a { border: 1px solid rgba(0,0,0,0.4); background: rgba(255,255,255,0.2); display: block; position: relative; float: left; padding: 1px; margin: 0 5px 5px 0; border-radius: 7px; overflow: hidden; } .fullGallery a div { border-radius: 5px; position: absolute; top: 1px; left: 1px; transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; } .fullGallery a img { border-radius: 5px; } .fullGallery a span { display: block; width: 46px; height: 46px; position: absolute; left: 23px; top: 23px; background: transparent url('../imgs/nm/play2.png') no-repeat; border-radius: 5px; } .fullGallery a:hover { border-color: rgba(0,0,0,0.7); background: rgba(255,255,255,0.4); } .fullGallery a:hover div { box-shadow: 0 0 10px rgba(255,255,255,0.6) inset; } 

.news { cursor:default; width: calc(100% - 80px); display: table; padding: 18px 0; margin: 0 auto; } .news a.imgn, .news a.imgn img { width: 96px; height: 96px; } .news a.imgn { display: block; float: left; padding: 1px; border: 1px solid rgba(0,0,0,0.4); border-radius: 6px; } .news a.imgn img { border-radius: 5px; } .news .contentn { width: calc(100% - 110px); box-sizing: border-box; padding: 10px 0 0 15px; float: left; } .news a.titlen { font-weight: bold; display: table; font-size: 16px; padding: 0 0 10px 0; } .news .textn { color: rgba(0,0,0,0.8); font-size: 11px; min-height:42px; overflow: hidden; } .news .finalinfo { width: 100%; display: block; padding: 5px 0 0 0; } .news .finalinfo .datan { color: rgba(0,0,0,0.6); float: left; font-weight: bold; font-size: 11px; } .news .finalinfo .lermaisn { float: right; font-weight: bold; padding-right: 20px; } .news .finalinfo .lermaisn a, .ctcarea .lermaisn_all a { font-size: 12px; font-weight: bold; } .shadownew { opacity: 0.7; width: 100%; height: 12px; background: transparent url('../imgs/separator_news.png') no-repeat center top; margin: 0 auto; } 

#modal { position: fixed; z-index: 2000; top:0; left: 0; padding: 20px 0 0 0; width: 460px; height: 250px; left:calc(50% - 233px);top:calc(50% - 128px); text-align: center; border: 3px solid #6c6c6e; border-radius: 10px; box-shadow: 0 0 25px rgba(0,0,0,0.5); }
#modal h1 { color: #fff; text-shadow: none; text-align:center; width: 100%; margin:16px 0 20px 0; font-size: 23px !important; }
#modal { color: #fff; background: #0b0806; }

.banner { position: relative; background: transparent; } .banner .circles { z-index: 3; height: 13px; position: absolute; } .banner .circles div { cursor: pointer; float: left; width: 13px; height: 13px; background: transparent url('../imgs/nm/circles.png') no-repeat -14px 0; margin: 0 4px 0 0; border-radius: 6px; box-shadow: 0 0 5px rgba(0,0,0,0.7); } .banner .circles div.act { background-position: 0 0; } .banner > a { position: absolute; z-index: 1; top: 0; left: 0; display: block; } .banner > a.bvis { z-index: 2; } .banner, .banner > a { border-radius: 10px; } .banner > a > img { border-radius: 8px; } .banner > a > .bmask { position: absolute; left: 0; top: 0; } .banner { border: 2px solid rgba(0,0,0,0.4); }
.banner .circles { bottom: 10px; right: 10px; }
.banner .bmask { }

.faceIndex { border: 2px solid rgba(0,0,0,0.4); }

.paginate { display: table; margin: 30px auto; } .paginate a { display: block; padding: 5px 8px; font-weight: bold; box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset; float: left; margin: 0 1px 0 0; border-radius: 3px; } .paginate a.atual, .paginate a.desatived { cursor: default; box-shadow: none; } .paginate a { background: rgba(0,0,0,0.7); border: 1px solid rgba(0,0,0,0.7); color: rgba(255,255,255,0.7) !important; } .paginate a:hover { background: rgba(0,0,0,0.9) !important; border-color: rgba(0,0,0,0.9) !important; color: #fff !important; } .paginate a:active, .paginate a.atual { background: #000 !important; border-color: #000 !important; color: #fff !important; } .paginate a:active { opacity: 0.5; } .paginate a.desatived { background: rgba(0,0,0,0.1) !important; border-color: rgba(0,0,0,0.1) !important; color: rgba(0,0,0,0.3) !important; }

table.default { border-radius: 4px; box-shadow: 0 0 5px rgba(0,0,0,0.3); width: 100%; background: 0; overflow: hidden; } table.default tr td:first-child { border: 0; } table.default tr td { font-size: 12px; padding: 6px 8px; border-left: 1px solid rgba(0,0,0,0.1); background: rgba(0,0,0,0.1); } table.default tr.two td { background: #fff; } table.default tr td.foco { font-weight: bold; color: #000; background: rgba(0,0,0,0.2); } table.default tr.two td.foco { background: rgba(0,0,0,0.1); } table.default tr th { font-weight: bold; text-align: center; background: rgba(0,0,0,0.8); color: #fff; padding: 10px 0; } table.default tr.ctype2, table.default tr.ctype2 td { padding: 0; margin: 0; height: 2px; background: rgba(0,0,0,0.1); } table.default .pos { width: 25px; text-align: center; }

.horMenu { display: table; margin: 20px auto; } .horMenu a { float: left; padding: 10px 15px; border-bottom: 2px solid rgba(0,0,0,0.5); margin: 0 0 0 10px; text-transform: uppercase; font-size: 12px; color: rgba(0,0,0,0.6) !important; } .horMenu a:first-child { margin: 0; } .horMenu a:hover { border-color: #000 !important; color: #000 !important; } .horMenu a.act { cursor: default; border-color: #000 !important; color: #000 !important; text-shadow: 0 0 5px rgba(255,255,255,0.6); } .horMenu a:active { opacity: 0.6; }

.rulesbox { height: 260px; box-sizing: border-box; overflow: auto; margin: 0 auto 20px; padding: 20px; width: calc(100% - 20px); border: 2px solid rgba(0,0,0,0.2); background: rgba(0,0,0,0.1); } .rulesbox h1 { padding-top: 0; width: auto; height: auto; margin: 0; padding: 0 0 20px 20px; font-size: 20px; }

.formpadrao, .formpadrao > div, .formpadrao .camp input, .formpadrao .camp select { border-radius: 3px; } .formpadrao { display: table; margin: 0 auto 2px auto; padding: 2px; } .formpadrao > div { display: table; } .formpadrao .desc { width: 140px; padding: 0 10px; font-weight: bold; text-align: right; } .formpadrao .desc, .formpadrao .camp, .formpadrao .camp2 { float: left; height: 40px; line-height: 40px; } .formpadrao .camp input[type="text"], .formpadrao .camp input[type="password"], .formpadrao .camp input[type="file"] { border: 0; width: 200px; margin: 5px 5px 0 0; height: 30px; line-height: 30px; padding: 0 5px; box-shadow: 1px 1px 1px rgba(0,0,0,0.4) inset; } .formpadrao .camp select { border: 0; width: 210px; margin: 5px 5px 0 0; padding: 6px 5px 5px; box-shadow: 1px 1px 1px rgba(0,0,0,0.4) inset; } .formpadrao textarea { border: 0; resize: vertical; height: 300px; width: 200px; margin: 0 4px 10px 0; padding: 5px; } .formpadrao.tdate .camp input { text-align: center; padding: 0 9px; } .formpadrao.errorc, .formpadrao.errorc .desc, .formpadrao.errorc .camp { border-color: #c70000; } .formpadrao.errorc > div { background: #c70000; } .formpadrao.errorc .desc { color: #fff; } .formpadrao { border: 1px solid rgba(0,0,0,0.7); } .formpadrao > div { background: rgba(0,0,0,0.7); } .formpadrao .desc { color: #fff; } .formpadrao .camp input[type="text"], .formpadrao .camp input[type="password"], .formpadrao .camp input[type="file"], .formpadrao .camp select, .formpadrao textarea { background: #fff; } .formpadrao .camp input[type="text"]:focus, .formpadrao .camp input[type="password"]:focus, .formpadrao .camp select:hover, .formpadrao textarea:focus { background: #fffbd5; }

label.captcha { position: relative; } label.captcha img.captchaImage { position: absolute; left: 8px; top: 3px; opacity: 0.8; border-radius: 3px; } label.captcha a { position: absolute; right: 12px; top: 12px; } label.captcha a, label.captcha a img { width: 23px; height: 23px; } label.captcha a:hover { opacity: 0.7; } label.captcha a:active { opacity: 1; }

.castled { width: 400px; margin: 0 auto; } .castled, .castled > div { display: table; } .castled .ct { font-size: 16px; font-weight: bold; padding: 10px 0 10px 30px; } .castled .imgc { width: 200px; height: 113px; border: 1px solid rgba(0,0,0,0.4); float: left; border-radius: 6px; } .castled .imgc span { display: block; width: 200px; height: 113px; background: rgba(0,0,0,0.6) url('../imgs/nm/castles.jpg') no-repeat; border-radius: 5px; } .castled .ci { float: left; width: 188px; padding: 2px 0 0 10px; } .castled .ci .co { font-weight: bold; } .castled .ci .cc { margin-bottom: 8px; } .castled .nwar { padding: 5px 0 10px 0; } .castled .imgc.aden span { background-position: left top; } .castled .imgc.goddard span { background-position: -200px top; } .castled .imgc.giran span { background-position: -400px top; } .castled .imgc.oren span { background-position: -600px top; } .castled .imgc.dion span { background-position: -800px top; } .castled .imgc.gludio span { background-position: -1000px top; } .castled .imgc.innadril span { background-position: -1200px top; } .castled .imgc.rune span { background-position: -1400px top; } .castled .imgc.schuttgart span { background-position: -1600px top; }

.rankings_options { cursor: pointer; transition: background 0.5s, border-color 0.5s, color 0.5s; position: absolute; top: 20px; right: 28px; background: #f5f5f5; border: 1px solid rgba(0,0,0,0.2); height: 34px; line-height: 34px; padding: 0 26px 0 10px; border-radius: 5px; text-transform: uppercase; font-size: 12px; font-weight: bold; color: rgba(0,0,0,0.6); }
.rankings_options .rankings_arrow { transition: opacity 0.5s; position: absolute; top: 15px; right: 10px; Display: block; width: 10px; height: 6px; background: transparent url('../imgs/nm/rankings_arrow.png') no-repeat; opacity: 0.6; }
.rankings_options:hover { background: rgba(0,0,0,0.2); border-color: rgba(0,0,0,4); color: rgba(0,0,0,0.8); }
.rankings_options:hover .rankings_arrow { opacity: 0.8; }
.rankings_options > div { opacity: 0; transition: opacity 0.5s; width: 0px; height: 0px; overflow: hidden; position: absolute; top: 35px; right: 0; border-radius: 6px; box-shadow: 5px 5px 5px rgba(0,0,0,0.2); }
.rankings_options > div a { line-height: normal; width: 150px !important; font-size: 10px !important; padding: 5px 0 !important; }
.rankings_options:hover > div { width: auto !important; height: auto !important; opacity: 1; padding: 10px; background: #f5f5f5; border: 1px solid #dddddd; border-right: 0; border-bottom: 0; }

.anpc a {
        color: #ff0018; /* Cambia el color según tus preferencias */
        text-decoration: none;
    }

    .anpc a:hover {
        text-decoration: underline;
    }
	
	
	 .ess a {
        color: #ff0018; /* Cambia el color según tus preferencias */
        text-decoration: none;
    }

    .ess a:hover {
        text-decoration: underline;
    }
	 #login_form {
    max-width: 250px; /* Reducir el ancho máximo */
    padding: 15px; /* Reducir el espacio interno */
    margin: 0 auto;
}

   /* Añade estilos al botón */
#login_form .gologin {
    background-color: #3498db;
    color: #fff;
    padding: 10px; /* Ajusta el espacio interno alrededor del texto en el botón */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Ocupa todo el ancho disponible */
}


#login_form label {
    display: inline-block;
    width: 100%; /* Ajustar el ancho según tus necesidades */
    margin-right: 10%; /* Añadir un pequeño espacio entre los campos */
}



#login_form .error {
    color: #e74c3c;
    margin-bottom: 5px;
    max-height: 30px; /* Limitar la altura del mensaje de error */
    overflow: hidden; /* Ocultar el exceso de contenido */
}
    /* Añade estilos al botón */
    #login_form .gologin {
        background-color: #3498db; /* Cambia el color del fondo del botón según tus preferencias */
        color: #fff; /* Cambia el color del texto del botón según tus preferencias */
        padding: 10px; /* Añade espacio interno alrededor del texto en el botón */
        border: none; /* Elimina el borde del botón */
        border-radius: 5px; /* Redondea las esquinas del botón */
        cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
    }

   #login_form .error {
    color: #e74c3c;
    margin-bottom: 5px;
    max-height: 30px; /* Limitar la altura del mensaje de error */
    overflow: hidden; /* Ocultar el exceso de contenido */
}

/* ====== CONTENEDOR GENERAL ====== */
.rates {
  background: #0c0b09;
  color: #c6b9a5;
  font-family: 'Cinzel', serif;
  padding: 40px 0;
}

.rates-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ====== CABECERA ====== */
.heading-title {
  font-size: 28px;
  color: #e7cf99;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.heading-line {
  display: block;
  margin: 10px auto;
  opacity: 0.7;
}

/* ====== BOTONES DE TABS ====== */
.rates-flex {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  list-style: none;
  padding: 0;
}

.rates-flex__button {
  background: #e20909;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.rates-flex__button:hover {
  background: #3a2a14;
  color: #fff;
  border-color: #9a773c;
  box-shadow: 0 0 6px #9a773c80;
}

/* ====== TABLA DE RANKING ====== */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #ec0101;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
}

.rates-table thead {
  background: #2a211b;
  color: #e7cf99;
  text-transform: uppercase;
  font-weight: bold;
}

.rates-table th, .rates-table td {
  padding: 12px 16px;
  text-align: center;
}

.rates-table tbody tr {
  background: #231e19;
  transition: all 0.2s ease;
}

.rates-table tbody tr:nth-child(even) {
  background: #2c2621;
}

.rates-table tbody tr:hover {
  background: #3a2a14;
}

/* ====== DESTACAR PRIMEROS PUESTOS ====== */
.rates-table tbody tr:first-child {
  background: #ff0000;
  color: #fff;
  font-weight: bold;
}

.rates-table tbody tr:first-child td {
  border-bottom: 2px solid #ff0000;
}

/* ====== TEXTO Y COLORES ====== */
.rates-table td b {
  color: #e7cf99;
}

.rates-table td[style] {
  color: #5bc400 !important;
}

/* ====== BOTÓN RANKING ====== */
.rates-tabs__button {
  display: inline-block;
  margin: 0 auto;
  background: #3a2a14;
  color: #ffcc66;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.rates-tabs__button:hover {
  background: #9a773c;
  color: #fff;
  box-shadow: 0 0 10px #ffcc6680;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .rates-table th, .rates-table td {
    padding: 10px 6px;
    font-size: 13px;
  }

  .rates-flex {
    flex-wrap: wrap;
  }

  .rates-flex__button {
    width: 45%;
    margin-bottom: 8px;
  }
}

.boss-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }
  .boss-table th {
    background-color: #4a3a1f;
    color: #f5deb3;
    padding: 10px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
  }
  .boss-table td {
    padding: 10px;
    font-size: 14px;
    color: #ddd;
    text-align: left;
  }
  .boss-table tr:nth-child(even) {
    background-color: #2b2417;
  }
  .boss-table tr:nth-child(odd) {
    background-color: #3b3221;
  }
  .boss-alive {
    color: #00ff5a;
    font-weight: bold;
  }
  .boss-dead {
    color: #ff3333;
    font-weight: bold;
  }
  .boss-section {
    background: #6b4710;
    color: #f3c56f;
    text-align: left;
    font-weight: bold;
  }
  
  /* ===== Scrollbar MMORPG Style ===== */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Fondo del scrollbar */
::-webkit-scrollbar-track {
  background: #0b0f0a; /* oscuro tipo UI Lineage */
  border: 1px solid #2f3a2e;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* Barra de desplazamiento */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #33ff66 0%, #146b2e 100%);
  border: 1px solid #0d3f1b;
  border-radius: 10px;
  box-shadow: 0 0 6px #0aff64, inset 0 0 4px #093;
  animation: scroll-glow 1.5s linear infinite;
}

/* Efecto de brillo animado MMORPG */
@keyframes scroll-glow {
  0% {
    box-shadow: 0 0 6px #0aff64, inset 0 0 4px #093;
  }
  50% {
    box-shadow: 0 0 12px #00ff88, inset 0 0 6px #0f4;
  }
  100% {
    box-shadow: 0 0 6px #0aff64, inset 0 0 4px #093;
  }
}
/* === GENERAL === */
body {
  background: #0c0c0c;
  color: #dcdcdc;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

.logo-container {
  text-align: center;
  margin-top: 20px;
}

.logofeatures {
  max-width: 300px;
  height: auto;
}

.news-page {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TITLE === */
.title-container {
  text-align: center;
  margin-top: 10px;
  color: #ffbb4c;
  font-size: 16px;
  font-weight: 600;
}

/* === CONTAINER === */
.wiki-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  margin-top: 30px;
}

/* === MENU === */
.radio-menu {
  width: 250px;
  background: #1a1209;
  border: 1px solid #3a2b18;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.menu-item {
  margin-bottom: 10px;
}

.radio-menu input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.menu-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #261b0f;
  color: #ffbb4c;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #3a2b18;
}

.menu-item label:hover {
  background: #372413;
  color: #fff;
  transform: scale(1.03);
}

.menu-icon {
  margin-right: 10px;
  font-size: 14px;
  color: #ffbb4c;
}

.arrow-icon {
  font-size: 14px;
  color: #ffbb4c;
}

.menu-item input:checked + label {
  background: linear-gradient(90deg, #ffbb4c, #dca543);
  color: #121212;
  box-shadow: 0 0 10px #d9a54b;
}

/* === CONTENT === */
.content-area {
  flex: 1;
  background: #14100b;
  border: 1px solid #3a2b18;
  border-radius: 8px;
  padding: 25px 30px;
  min-height: 600px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  animation: fadeIn 0.4s ease-in-out;
}

.content {
  display: none;
}

h2 {
  color: #ffbb4c;
  border-bottom: 2px solid #3a2b18;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

h3 {
  color: #f0d28a;
}

p, li {
  font-size: 14px;
  color: #d4d4d4;
  line-height: 1.6;
}

/* === ICONS === */
.wiki-icon-image {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

/* === RAID BOSSES === */
.raidboss-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.raidboss-box {
  background: #1c140b;
  border: 1px solid #3a2b18;
  border-radius: 8px;
  padding: 12px;
  width: 230px;
  text-align: left;
  transition: all 0.25s ease;
}

.raidboss-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(217,165,75,0.4);
}

.raidboss-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 5px;
}

.raidboss-image {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  margin-right: 6px;
}

.grey-text {
  color: #bbb;
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 950px) {
  .wiki-container {
    flex-direction: column;
    align-items: center;
  }

  .radio-menu {
    width: 90%;
    margin-bottom: 20px;
  }

  .content-area {
    width: 95%;
  }

  .raidboss-box {
    width: 100%;
  }
}
faceIndex {
    overflow: hidden;
    min-height: 210px;
    background: transparent;
    margin: 15px auto;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.dcaptcha {
    display: table;
    width: auto;
    height: 90px;
    margin: 30px auto 5px auto;
}

.dcaptcha .opcs {
    float: left;
    padding: 17px 0 0 0;
}

.dcaptcha .opcs > *:hover {
    opacity: 0.7;
}

.dcaptcha .opcs > *:active {
    opacity: 1;
}

.dcaptcha img#siimage {
    float: left;
    border: 1px solid #000;
    margin-right: 15px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

p.cbold {
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    text-transform: uppercase;
}

span.donatebt {
    width: 250px;
    height: 48px;
    background: #fff url('../imgs/nm/pagepay.jpg') no-repeat left top;
    display: block;
    position: absolute;
    top: 4px;
    left: 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

span.donatebt.paypal {
    background-position: left -49px;
}

.rmsg {
    width: 360px;
    margin: 0 auto 20px auto;
    padding: 10px;
    background: #108c00;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.rmsg.error {
    background-color: #b30000 !important;
}
/* ==============================
   L2LastWar - Information Panel
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  color: #e0e0e0;
  background: #0e0e0e url('../img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* --- General layout --- */
.wiki-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 0;
}

.radio-menu {
  background: rgba(15, 10, 5, 0.9);
  border: 1px solid #4c3100;
  border-radius: 12px;
  width: 260px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.05);
}

.menu-item {
  position: relative;
  margin: 4px 12px;
}

.menu-item input {
  display: none;
}

.menu-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d2a85d;
  background: linear-gradient(180deg, #1a1205, #0e0902);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-item label:hover {
  background: rgba(255, 200, 100, 0.1);
  color: #ffc76a;
  border-color: rgba(255, 190, 90, 0.5);
  transform: translateX(3px);
}

.menu-item input:checked + label {
  background: rgba(255, 180, 50, 0.15);
  border-color: #d2a85d;
  color: #ffe0a3;
}

.menu-icon {
  margin-right: 10px;
  color: #ffb347;
  font-size: 15px;
}

.arrow-icon {
  color: #ffd87a;
  font-weight: bold;
}

/* --- Content area --- */
.content-area {
  flex: 1;
  max-width: 900px;
  background: rgba(15, 10, 5, 0.85);
  border: 1px solid #4c3100;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.05);
}

.content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

input#feature1:checked ~ .content-area #feature1-content,
input#feature2:checked ~ .content-area #feature2-content,
input#feature3:checked ~ .content-area #feature3-content,
input#feature4:checked ~ .content-area #feature4-content,
input#feature5:checked ~ .content-area #feature5-content,
input#feature6:checked ~ .content-area #feature6-content,
input#feature7:checked ~ .content-area #feature7-content,
input#feature8:checked ~ .content-area #feature8-content,
input#feature9:checked ~ .content-area #feature9-content {
  display: block;
}

h2 {
  color: #ffb347;
  border-bottom: 1px solid rgba(255, 190, 90, 0.3);
  padding-bottom: 6px;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  color: #ccc;
  line-height: 1.6;
}

/* --- List items --- */
ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.spoil-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 200, 100, 0.1);
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  transition: background 0.3s ease;
}

.spoil-item:hover {
  background: rgba(255, 180, 50, 0.1);
}

.spoil-item-left {
  display: flex;
  align-items: center;
}

.wiki-icon-image {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 4px;
}

.spoil-item-right {
  color: #ffb347;
  font-weight: bold;
}

/* --- Image boxes --- */
.image-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.image-box {
  width: 48%;
  background: rgba(30, 20, 10, 0.85);
  border: 1px solid #3a2602;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.image-box:hover {
  transform: translateY(-4px);
  border-color: #ffb347;
}

.responsive-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.image-title {
  color: #ffb347;
  font-weight: bold;
  font-size: 15px;
}

.image-description {
  font-size: 13px;
  color: #bbb;
  line-height: 1.4;
}

/* --- Raidboss boxes --- */
.raidboss-container,
.castle-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.raidboss-box {
  background: rgba(25, 18, 8, 0.9);
  border: 1px solid #3d2b00;
  border-radius: 10px;
  width: 260px;
  text-align: center;
  transition: 0.3s;
}

.raidboss-box:hover {
  border-color: #ffb347;
  transform: translateY(-3px);
}

.raidboss-header img {
  width: 100%;
  height: 140px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.raidboss-drops li {
  color: #ccc;
  font-size: 13px;
  margin: 4px 0;
}

/* --- Table styles --- */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid rgba(255, 180, 60, 0.2);
  padding: 8px;
  text-align: left;
}

.responsive-table th {
  color: #ffb347;
  font-weight: bold;
  background: rgba(255, 180, 60, 0.1);
}

.responsive-table td {
  color: #ddd;
}

/* --- Animations --- */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(5px);}
  to {opacity: 1; transform: translateY(0);}
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: #d2a85d;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .wiki-container {
    flex-direction: column;
    align-items: center;
  }
  .radio-menu {
    width: 90%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu-item {
    width: 45%;
  }
  .content-area {
    width: 90%;
  }
}
