@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

@font-face {
  font-family: "Hidden";
  src: url("stylesheets/custom.ttf");
}

@font-face {
  font-family: "BebasNeue";
  src: url("stylesheets/bebasneue.otf");
}

/* Ocultar botón JUGAR viejo en todas partes */
.btnjoin {
  display: none !important;
}

/* Mostrar elementos normales en desktop */
.btn-jugar-header {
  display: flex !important;
}

.users-flat {
  display: flex !important;
}

body {
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  cursor: default;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  background: #0a0e1a url(images/background-1.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #d4d4d4;
  min-height: 100vh;
}

@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: Roboto, Arial, sans-serif;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  cursor: pointer;
  transition: color .2s;
}

a:hover {
  text-decoration: underline;
  color: #6eecd6;
}

::selection {
  background-color: #e6a800;
  color: white;
}

.srcprotecter {
  width: auto;
  height: auto;
}

.srcprotecter:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.relative {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: Hidden;
}

.relative.cirlce {
  border-radius: 100%;
}

/* VIDEO WRAPPER - uncropped, natural size */
.ak-video-wrapper {
  position: relative;
  width: calc(100% - 50px);
  max-width: 1110px;
  margin: 115px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.10);
}

.ak-video {
  position: relative;
  width: 100%;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.ak-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ANIMATED NEWS BANNER */
@keyframes ak-pulse-border {
  0%   { box-shadow: 0 0 0 0 rgba(255,215,0,0.5), 0 4px 20px rgba(0,0,0,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(255,215,0,0), 0 4px 20px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,0,0), 0 4px 20px rgba(0,0,0,0.5); }
}

@keyframes ak-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.ak-first-news {
  position: absolute;
  bottom: 14px;
  left: 14px;
  cursor: pointer;
  z-index: 10;
  animation: ak-pulse-border 2.5s infinite;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: block;
}

.ak-first-news:hover {
  transform: translateY(-3px) scale(1.02);
  animation: none;
  box-shadow: 0 0 0 2px #ffd700, 0 8px 28px rgba(0,0,0,0.6);
}

.ak-news-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 12, 26, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 8px;
  padding: 8px 14px 8px 10px;
  min-width: 0;
}

.ak-news-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffd700, #e6a800);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(230,168,0,0.4);
  transition: transform 0.2s ease;
}

.ak-first-news:hover .ak-news-icon {
  transform: rotate(15deg) scale(1.1);
}

.ak-news-content {
  flex: 1;
  min-width: 0;
}

.ak-news-title {
  font-family: BebasNeue, sans-serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffd700 0%, #fff5a0 40%, #ffd700 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ak-shimmer 3s linear infinite;
  white-space: nowrap;
  line-height: 1.2;
}

.ak-news-text {
  font-family: BebasNeue, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
  line-height: 1.2;
  margin-top: 1px;
}

.ak-first-news:hover .ak-news-text {
  color: rgba(255,255,255,0.95);
}

.ak-news-arrow {
  flex-shrink: 0;
  color: #ffd700;
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-left: 4px;
}

.ak-first-news:hover .ak-news-arrow {
  transform: translateX(4px);
  opacity: 1;
}

footer {
  position: relative;
  background: linear-gradient(180deg, rgba(7,12,26,0.85) 0%, rgba(4,8,16,0.85) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  padding: 0;
}

footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 40px 30px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

footer .footer-brand {
  flex: 1 1 200px;
  min-width: 180px;
}

footer .footer-brand .brand-name {
  font-family: BebasNeue;
  font-size: 28px;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
  margin-bottom: 8px;
}

footer .footer-brand .brand-desc {
  font-size: 11px;
  color: #5a6a80;
  line-height: 1.6;
  max-width: 200px;
}

footer .footer-col {
  flex: 1 1 130px;
  min-width: 120px;
}

footer .footer-col .col-title {
  font-family: BebasNeue;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffd700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

footer .footer-col .col-link {
  display: block;
  padding: 5px 0;
  font-size: 12px;
  color: #5a6a80;
  cursor: pointer;
  transition: color .2s, padding-left .2s;
  text-decoration: none;
}

footer .footer-col .col-link:hover {
  color: #ffd700;
  padding-left: 4px;
}

footer .footer-cta {
  flex: 1 1 180px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

footer .footer-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #f5cf2f, #d7a707);
  color: #1a1200;
  font-family: BebasNeue;
  font-size: 18px;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: 1px solid rgba(255, 229, 120, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  white-space: nowrap;
}

footer .footer-cta .cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.35);
}

footer .footer-bottom {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 215, 0, 0.07);
}

footer .footer-bottom .copyrights {
  display: block;
  font-size: 12px;
  color: #556677;
  text-align: center;
  line-height: 1.7;
}

footer .footer-bottom .copyrights a {
  color: #ffd700;
  text-decoration: none;
  transition: opacity .2s;
}

footer .footer-bottom .copyrights a:hover {
  opacity: 0.8;
}

footer .displays {
  display: none;
}

footer>.copyrights {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 112px;
  background: linear-gradient(180deg, rgba(4, 6, 14, 0.98) 0%, rgba(6, 9, 20, 0.96) 100%);
  z-index: 100;
  transition: all .3s;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 215, 0, 0.08), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header .top-bar {
  position: relative;
  height: 36px;
  background: rgba(4, 6, 14, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all .4s;
}

.header .top-bar:before {
  position: absolute;
  content: '';
  width: 74px;
  height: 74px;
  left: calc(50% - 37px);
  top: 100%;
  margin-top: 5px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), 0 0 40px rgba(255, 215, 0, 0.06);
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

.header .top-bar:after {
  display: none;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3), 0 0 50px rgba(255, 215, 0, 0.1), inset 0 0 15px rgba(255, 215, 0, 0.1);
  }

  50% {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.5), 0 0 70px rgba(255, 215, 0, 0.2), inset 0 0 20px rgba(255, 215, 0, 0.15);
  }
}

/* Logo centrado con el círculo */
.header .top-bar .logo-link {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  text-decoration: none;
  border-radius: 50%;
  z-index: 5;
}

.header .top-bar .logo-center {
  height: 50px;
  pointer-events: none;
  transition: transform .3s, filter .3s;
}

.header .top-bar .logo-link:hover .logo-center {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px #ffd700);
}

.header .top-bar .support {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  transition: all .2s;
  cursor: pointer;
  padding: 0 12px;
  color: #667a8a;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.header .top-bar .support:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

.header .top-bar .users {
  position: relative;
  float: right;
  transition: all .2s;
  margin-right: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2px;
  padding-right: 4px;
}

.header .top-bar .users .li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  transition: all .2s;
  color: #8899aa;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  position: relative;
  max-width: 160px;
  border: 1px solid transparent;
}

.header .top-bar .users .li[href] {
  cursor: pointer;
}

.header .top-bar .users .li .dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 3px);
  background-color: #111827;
  width: 250px;
  min-height: 150px;
  cursor: default;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
  font-family: Arial;
  text-transform: none;
  transition: all .2s;
  display: none;
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.header .top-bar .users .li .dropdown .head {
  padding: 10px;
  position: relative;
  background-color: #111827;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header .top-bar .users .li .dropdown .head .avatars {
  position: relative;
  height: 30px;
  width: 30px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  overflow: hidden;
  background-color: #0a0e1a;
}

.header .top-bar .users .li .dropdown .head .avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.header .top-bar .users .li .dropdown .head .pseudo {
  position: absolute;
  left: 80px;
  right: 10px;
  top: 15px;
  font-family: BebasNeue;
  color: #d8d8d8;
  font-size: 20px;
  overflow: hidden;
}

.header .top-bar .users .li .dropdown .head .btn {
  position: absolute;
  left: 80px;
  right: 10px;
  top: 40px;
  font-family: BebasNeue;
  color: white;
  font-size: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #e6a800, #cc9500);
  padding: 5px 10px;
  border-radius: 6px;
  transition: all .2s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.39);
  cursor: pointer;
}

.header .top-bar .users .li .dropdown .head .btn:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
}

.header .top-bar .users .li .dropdown .head .btn[disconnect] {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  background-color: #b1b1b1;
}

.header .top-bar .users .li .dropdown .head .btn[disconnect]:hover {
  background-color: #8a8a8a;
}

.header .top-bar .users .li .dropdown .list {
  position: relative;
  padding: 10px 15px;
  transition: all .2s;
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  font-family: BebasNeue;
  font-size: 15px;
  color: #8899a6;
  letter-spacing: .5px;
}

@media screen and (max-width: 560px) {
  .header .mobilelogo {
    visibility: visible;
    opacity: 1;
  }

  .header .top-bar .users .li .dropdown {
    right: -72px;
  }

  .header .mobilelogo {
    width: 45px;
    height: 45px;
    left: calc(50% - 22.5px);
  }
}

*[href] {
  cursor: pointer;
}

.header .top-bar .users .li .dropdown .list img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.header .top-bar .users .li .dropdown .list:hover {
  background-color: rgba(255, 215, 0, 0.06);
}

.header .top-bar .users .li .name {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  text-align: left;
  letter-spacing: .4px;
}

.header .top-bar .users .li .name.righter {
  margin-right: 30px;
  color: #e2c96a;
  font-weight: 700;
  letter-spacing: .5px;
}

.header .top-bar .users .li .avatar {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 22px;
}

.header .top-bar .users .li:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

.header .top-bar .users .li:hover .name {
  color: #ffd700;
}

.header .mobilebtn {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.header .mobilebtn:hover {
  background-color: rgba(255, 215, 0, .15);
}

.header .mobilebtn:active {
  background-color: rgba(255, 215, 0, .25);
}

.header .mobilelogo {
  position: absolute;
  width: 50px;
  height: 50px;
  left: calc(50% - 25px);
  top: 0;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.header .mobilelogo img,
.header .mobilelogo .logo-mobile {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform .3s, filter .3s;
}

.header .mobilelogo:hover img,
.header .mobilelogo:hover .logo-mobile {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #ffd700);
}

.header.scrolling .mobilelogo {
  visibility: visible;
  opacity: 1;
}

.header .navbar {
  position: absolute;
  top: 35px;
  height: 70px;
  width: calc(50% - 85px);
  transition: all .4s;
}

.header .navbar.left {
  left: 0;
}

.header .navbar.right {
  right: 0;
}

.header .navbar .li {
  display: inline-block;
  vertical-align: top;
  margin-top: 28px;
  font-size: 13px;
  font-family: BebasNeue;
  color: rgba(180, 192, 205, 0.8);
  transition: all .25s ease;
  cursor: pointer;
  letter-spacing: 2px;
  padding: 6px 14px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid transparent;
}

.header .navbar .li:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 16px;
  right: 16px;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity .25s ease;
  transform: none;
}

.header .navbar .li:hover:after,
.header .navbar .li[focusme]:after {
  opacity: 1;
  width: auto;
}

.header .navbar .li:hover {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.1);
  background: rgba(255, 215, 0, 0.04);
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.45);
}

.header .navbar .li[focusme] {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.15);
  background: rgba(255, 215, 0, 0.06);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

.header .navbar.left .li {
  float: right;
}

.header .navbar.right .li {
  float: left;
}

.header.scrolling {
  height: 40px;
}

.header.scrolling .top-bar {
  display: none;
}

.header.scrolling .navbar {
  height: 40px;
  top: 0;
  width: calc(50% - 40px);
}

.header.scrolling .navbar .li {
  margin-top: 10px;
}

.header.scrolling .mobilebtn {
  top: 5px;
  width: 30px;
  height: 30px;
}

.formdialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1000;
  display: none;
}

.formdialog .closer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.formdialog .menumobile {
  position: relative;
  left: 0px;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, #0a0e1a, #060b18);
  width: 270px;
  height: 100vh;
  overflow-y: auto;
  transform: translateX(-30px);
  animation: 1s menumobile ease 1;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.formdialog .menumobile[closed] {
  animation: 1s menumobilereverse ease 1;
  overflow: hidden;
}

.formdialog .menumobile .li {
  display: block;
  width: 210px;
  transition: all .2s;
  transform: translateX(40px);
  padding: 10px;
  color: #c5c5c5;
  font-family: BebasNeue;
  cursor: pointer;
}

.formdialog .menumobile .li:hover {
  color: white;
}

.formdialog .menumobile .li[focusme] {
  color: #ffd700;
}

@keyframes menumobile {
  0% {
    transform: translateX(-270px);
  }

  70% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes menumobilereverse {
  0% {
    transform: translateX(-30px);
  }

  70% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-270px);
  }
}

@media screen and (max-width: 740px) {
  /* Video wrapper responsive para móviles */
  .ak-video-wrapper {
    width: 100% !important;
    margin: 100px 0 0 0 !important;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }

  .ak-video {
    max-height: 400px;
  }

  .ak-video video {
    max-height: 400px;
  }

  /* Banner más pequeño en móviles */
  .ak-first-news {
    bottom: 8px;
    left: 8px;
    font-size: 10px;
  }

  .ak-news-inner {
    gap: 6px;
    padding: 6px 10px;
  }

  .ak-news-icon {
    font-size: 14px;
  }

  .ak-news-title {
    font-size: 12px;
  }

  .ak-news-text {
    font-size: 10px;
  }

  .container .btnjoin {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    margin: 4px 10px !important;
    display: block !important;
    font-size: 11px !important;
    padding: 5px 10px !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    line-height: 14px !important;
    border-radius: 5px !important;
    box-shadow: none !important;
  }
}

@media screen and (max-width: 960px) {
  .header-left, .header-right {
    display: none !important;
  }
  
  .users-flat {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
    flex-shrink: 0;
  }

  .users-flat .li-icon {
    color: #ffd700;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
  }

  .user-panel-trigger {
    padding: 2px 6px !important;
    gap: 4px !important;
  }

  .user-panel-trigger .avatar-flat {
    width: 24px;
    height: 24px;
  }

  .user-panel-trigger .nickname-flat {
    font-size: 12px;
    display: none;
  }

  .user-panel-trigger .arrow-flat {
    font-size: 10px;
  }

  .login-btn-flat {
    font-size: 12px !important;
    gap: 4px !important;
  }

  .login-btn-flat i {
    font-size: 14px;
  }

  .btn-jugar-header {
    display: none !important;
  }

  .mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 12px;
  }
  .mobile-controls .mobilebtn {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }
  .logo-link-mobile {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  .logo-mobile {
    height: 55px !important;
    width: auto !important;
  }
  .mobilebtn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffd700;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    border: none;
    flex-shrink: 0;
  }
  .mobilebtn:hover {
    background: rgba(255,255,255,0.05);
  }
  .btn-jugar-mobile-header {
    display: none !important;
  }
}

@media screen and (max-width: 880px) {
  /* HEADER TABLET OPTIMIZADO */
  .header {
    height: 70px;
    padding: 0 15px;
  }

  .header-left .logo-center {
    height: 60px !important;
  }

  .navbar-flat {
    display: none !important;
  }

  .header-right {
    gap: 15px;
  }

  .languages-inline {
    display: flex;
    gap: 8px;
  }

  .flag-icon {
    width: 20px;
    height: 15px;
  }
}

@media screen and (max-width: 740px) {
  /* VIDEO ENORME en tablets - como DOFUS */
  .ak-video-wrapper {
    width: 100% !important;
    margin: 55px 0 0 0 !important;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 480px;
  }

  .ak-video {
    min-height: 480px !important;
    position: relative;
    width: 100%;
    line-height: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .ak-video video {
    display: block;
    width: 100%;
    min-height: 480px !important;
    object-fit: cover;
    border-radius: 0;
  }

  /* Banner más pequeño en móviles */
  .ak-first-news {
    font-size: 8px;
  }

  .ak-news-inner {
    gap: 4px;
    padding: 4px 8px;
  }

  .container {
    margin-top: 55px !important;
  }
}

@media screen and (max-width: 500px) {
  /* VIDEO ENORME a ancho completo en móviles - como DOFUS */
  .ak-video-wrapper {
    width: 100% !important;
    margin: 50px 0 0 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 450px;
  }

  .ak-video {
    min-height: 450px !important;
    position: relative;
    width: 100%;
    line-height: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .ak-video video {
    display: block;
    width: 100%;
    min-height: 450px !important;
    object-fit: cover;
    border-radius: 0;
  }

  .ak-first-news {
    bottom: 4px;
    left: 4px;
    font-size: 7px;
  }

  .ak-news-inner {
    gap: 3px;
    padding: 3px 6px;
  }

  .header {
    height: 50px !important;
  }

  .container {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 480px) {
  .header {
    height: 50px !important;
  }
  .logo-mobile {
    height: 45px !important;
  }
  .header-container {
    padding: 0 10px !important;
  }
  .mobilebtn {
    font-size: 20px !important;
  }
  .container {
    margin-top: 50px !important;
  }
}

.container {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  background: rgba(8, 12, 24, 0.65);
  border-radius: 12px;
  min-height: 100vh;
  margin-bottom: 50px;
  margin-top: 100px !important;
  max-width: 1110px;
  padding: 0 10px;
  border: 1px solid rgba(255, 215, 0, 0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@media screen and (max-width: 740px) {
  .container {
    width: calc(100% - 16px) !important;
    padding: 0 6px !important;
    border-radius: 8px !important;
    margin-top: 100px !important;
  }
}

.ak-video-wrapper ~ .container {
  margin-top: 25px !important;
}

@media screen and (max-width: 740px) {
  .ak-video-wrapper ~ .container {
    margin-top: 20px !important;
  }

  /* Asegurar espacio para el footer en móviles */
  body {
    padding-bottom: 0;
  }

  footer {
    position: relative;
    width: 100%;
    margin-top: 30px;
  }
}

.container .btnjoin {
  position: absolute;
  right: 10px;
  box-shadow: 0 4px 20px rgba(230, 168, 0, 0.3);
  background: linear-gradient(135deg, #e6a800, #cc9500);
  border-radius: 8px;
  padding: 14px 35px;
  top: -80px;
  cursor: pointer;
  font-size: 22px;
  transition: all .2s;
  font-family: BebasNeue;
  color: white;
  text-align: center;
  letter-spacing: 2px;
  line-height: 22px;
  width: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.container .btnjoin:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
  box-shadow: 0 6px 25px rgba(230, 168, 0, 0.4);
  transform: translateY(-2px);
}

/* Old ak-first-news selectors replaced — see new .ak-news-* classes above */

.container .contain {
  position: relative;
  display: inline-block;
  transition: all .2s;
  vertical-align: top;
  width: calc(100% - 320px);
  margin-left: 20px;
  clear: both;
  min-height: 50px;
  margin-bottom: 10px;
}

.container .contain.aside {
  width: 300px;
  margin-left: 0;
}

/* Stack columns on tablet/mobile */
@media screen and (max-width: 780px) {
  .container .contain,
  .container .contain.aside {
    display: block !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
}

.container .contain.aside[reordered] .colon {
  margin-left: 10px;
}

.container .contain.aside .colon {
  position: relative;
  width: calc(100% - 10px);
  min-height: 45px;
  background: linear-gradient(135deg, #111827, #0d1220);
  transition: all .3s;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
}

.container .contain.aside .colon .icon {
  position: absolute;
  left: 10px;
  top: 0;
  width: 45px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
}

.container .contain.aside .colon .icon img {
  width: calc(100% - -34px);
  margin-left: -5px;
}

.container .contain.aside .colon .text {
  font-family: BebasNeue;
  color: white;
  font-size: 20px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.55);
  margin-left: 45px;
  padding: 0 10px;
  cursor: pointer;
  height: 50px;
  overflow: hidden;
  line-height: 52px;
  letter-spacing: 1px;
  transition: all .2s;
  z-index: 1;
}

.container .contain.aside .colon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all .2s;
  z-index: 0;
  cursor: pointer;
}

.container .contain.aside .colon:hover:before {
  background-color: rgba(255, 215, 0, 0.04);
}

.container .contain.aside .colon .ak-colon {
  position: relative;
  width: calc(100% - 10px);
  margin: 0 auto;
  min-height: 10px;
  background-color: #111827;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

.container .contain.aside .colon .ak-colon .wallpaper {
  background: url("images/sprites/bg-article.jpg") no-repeat;
  background-size: cover;
  background-color: #0a0e1a;
  text-align: center;
  height: 190px;
  position: relative;
}

.container .contain.aside .colon .ak-colon .wallpaper img {
  margin-top: 15px;
}

.container .contain.aside .colon .ak-colon .infos {
  padding: 15px 15px 5px 15px;
  color: #8899a6;
  background-color: #0d1220;
}

.container .contain.aside .colon .ak-colon .infos .btn {
  font-family: BebasNeue;
  font-size: 15px;
  color: white;
  transition: all .2s;
  border-radius: 6px;
  width: 150px;
  padding: 10px 15px;
  background: linear-gradient(135deg, #e6a800, #cc9500);
  cursor: pointer;
  margin: 0 auto;
  margin-top: 7px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.container .contain.aside .colon .ak-colon .infos .btn:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
}

.container .contain .cards {
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: all .2s;
  width: calc(50% - 5px);
  background-color: #111827;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  margin-top: 10px;
  min-width: 300px;
  float: left;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.08);
}

.container .contain .cards:nth-child(even) {
  margin-left: 10px;
}

.container .contain .cards[fullwidth] {
  width: 100%;
  margin-left: 0px;
}

.container .contain .cards .wallpaper {
  transition: all .2s;
  position: relative;
  height: 210px;
  background-color: #0d1220;
}

.container .contain .cards .wallpaper .srcprotecter {
  width: 100%;
  height: 100%;
}

.container .contain .cards .wallpaper img {
  width: 100%;
  height: 100%;
}

.container .contain .cards[fullwidth] .wallpaper {
  height: 445px;
}

.container .contain .cards .title {
  position: relative;
  height: 56px;
  border-top: 2px solid #e6a800;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  background-color: #111827;
}

.container .contain .cards .title .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  overflow: hidden;
}

.container .contain .cards .title .icon img {
  width: calc(100% - -55px);
  margin-left: -3px;
  transition: all .5s;
}

.container .contain .cards .title .text {
  position: absolute;
  left: 56px;
  top: 0;
  font-family: BebasNeue;
  color: #8899a6;
  cursor: pointer;
  transition: all .2s;
  font-size: 22px;
  height: 40px;
  line-height: 42px;
  overflow: hidden;
}

.container .contain .cards .title .text:hover {
  color: #ffd700;
}

.container .contain .cards .title .infos {
  position: absolute;
  left: 56px;
  top: 35px;
  overflow: hidden;
  font-size: 11px;
  color: grey;
}

.container .contain .cards .intro {
  position: relative;
  padding: 10px;
  font-size: 13px;
  color: #8899a6;
}

.container .contain .cards .bottom {
  position: absolute;
  height: 34px;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  background-color: #0d1220;
}

.container .contain .cards .bottom .btns {
  display: inline-block;
  height: 100%;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 215, 0, 0.08);
  text-align: center;
  line-height: 35px;
  font-family: BebasNeue;
  cursor: pointer;
  transition: all .2s;
  float: right;
  font-size: 12px;
  color: #667;
}

.container .contain .cards .bottom .btns:hover {
  color: #ffd700;
}

.container .press {
  position: relative;
  display: block;
  z-index: 10;
  padding: 10px 0;
}

.container .press .paper {
  background-color: #111827;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  min-height: 640px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.08);
  overflow: hidden;
}

.container .press .paper[small] {
  min-height: auto;
  margin-top: 10px;
}

.container .press .paper .title {
  position: relative;
  min-height: 80px;
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.container .press .paper .title .goback {
  position: absolute;
  left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, .06);
  transition: all .2s;
  text-shadow: 0 2px 1px rgba(0, 0, 0, .2);
  top: calc(50% - 20px);
  cursor: pointer;
  border-radius: 100%;
}

.container .press .paper .title .goback:hover {
  background-color: rgba(0, 0, 0, 0.12);
}

.container .press .paper .title .icon {
  height: 50px;
  width: 50px;
  position: absolute;
  left: 50px;
  top: calc(50% - 25px);
  overflow: hidden;
}

.container .press .paper .title .icon img {
  width: calc(100% - -55px);
  margin-left: -3px;
  transition: all .2s;
}

.container .press .paper .title .text {
  position: relative;
  margin-left: 90px;
  padding: 5px 20px;
  font-family: BebasNeue;
  color: white;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  font-size: 25px;
  min-height: 70px;
  letter-spacing: 2px;
}

.container .press .paper .letter {
  padding: 30px;
  position: relative;
  color: #c8d0d8;
}

.container .press .paper .letter .wallpaper {
  position: relative;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.container .press .paper .letter .wallpaper img {
  max-width: 100%;
}

.container .press .paper .subtitle {
  position: relative;
  font-family: BebasNeue;
  padding: 10px 20px;
  font-size: 18px;
  color: #8899a6;
  letter-spacing: 1px;
}

.container .press .paper .comments {
  display: block;
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  background-color: #111827;
  position: relative;
}

.container .press .paper .comments[staffs] {
  background: url("images/sprites/bg-staff.jpg");
}

.container .press .paper .comments .avatar {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 70px;
  height: 70px;
  border: 1px solid transparent;
  border-radius: 2px;
}

.container .press .paper .comments[staffs] .avatar {
  border-color: #e96705;
}

.container .press .paper .comments[staffs] .avatar:after {
  position: absolute;
  content: attr(role);
  font-family: BebasNeue;
  color: white;
  width: calc(100% + 2px);
  height: 20px;
  left: -1px;
  top: 100%;
  line-height: 22px;
  font-size: 14px;
  text-align: center;
  background: url("images/sprites/bg-staff-orange.jpg");
}

.container .press .paper .comments .avatar img {
  width: 100%;
  height: 100%;
}

.container .press .paper .comments .infos {
  position: relative;
  margin-left: 85px;
  padding: 10px 20px;
  font-size: 11px;
  color: #667;
  top: 10px;
  z-index: 2;
}

.container .press .paper .comments .text {
  position: relative;
  margin-left: 85px;
  min-height: 70px;
  padding: 15px 20px;
  color: #c8d0d8;
  font-size: 12px;
  top: -10px;
}

@media screen and (max-width: 460px) {
  .container .ak-first-news {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 960px) {
  .container .contain .cards:nth-child(even) {
    margin-left: 0px;
  }

  .container .contain .cards {
    width: 100%;
  }

  .container .contain .cards .wallpaper {
    height: 325px;
  }

  .container .contain .cards[fullwidth] .wallpaper {
    height: 325px;
  }
}

@media screen and (max-width: 680px) {
  .container .contain .cards[fullwidth] .wallpaper {
    height: 210px;
  }

  .container .contain .cards .wallpaper {
    height: 210px;
  }

  .container .contain .cards[fullwidth] {}
}

@media screen and (max-width: 660px) {
  .container {
    width: calc(100% - 20px);
  }

  .container .contain {}

  .container .contain,
  .container .contain.aside,
  .container .contain.aside[reordered] {
    width: 100%;
  }

  .container .contain.aside[reordered] .colon {
    margin-left: 0px;
  }

  .container .contain.aside[reordered] .colon {
    width: 100%;
  }
}

.container .contain .cards .customTitle {
  position: relative;
  color: white;
  padding: 15px;
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.container .contain .cards .customTitle .text {
  position: relative;
  margin-right: 100px;
  font-size: 25px;
  font-family: BebasNeue;
  padding: 0 15px;
  overflow: hidden;
  display: flex;
  letter-spacing: 2px;
  align-items: center;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.container .contain .cards .customTitle .text * {
  font-family: BebasNeue, Roboto, Arial, sans-serif;
}

.container .contain .cards .customTitle .label {
  position: absolute;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
  top: 0;
  height: 100%;
}

.container .contain .cards .customTitle .label:hover {
  text-decoration: underline;
}

.container .contain .cards .padding {
  position: relative;
  padding: 10px;
  color: #c8d0d8;
  background-color: #111827;
}

.container .contain .cards .padding .form {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.container .contain .cards .padding .form input {
  outline: none;
  padding: 10px;
  background-color: #0a0e1a;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all .2s;
  width: calc(100% - 20px);
  margin: 0 auto;
  display: block;
  color: #d4d4d4;
  border-radius: 6px;
  margin-bottom: 10px;
  position: relative;
}

.container .contain .cards .padding .form input:focus {
  background-color: #0d1220;
  border-color: #e6a800;
  box-shadow: 0 0 8px rgba(230, 168, 0, 0.15);
}

.schema {
  position: relative;
  text-align: center;
  width: calc(100% - 15px);
}

.schema .pts {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #0d1220;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  margin-left: 15px;
  cursor: pointer;
  margin-top: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  outline: none;
  transition: all .2s;
}

.schema .pts:focus {
  border-color: #ffd700;
}

.schema .pts:hover {
  transform: scale(1.1);
}

.schema .pts[active] {
  border: 1px solid #e6a800;
  background-color: rgba(230, 168, 0, 0.1);
}

.container .contain .cards .padding .form .submit {
  position: relative;
  padding: 10px 30px;
  margin: 0 auto;
  color: white;
  background: linear-gradient(135deg, #e6a800, #cc9500);
  border: none;
  outline: none;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .2s;
  border-radius: 6px;
  font-family: BebasNeue;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(230, 168, 0, 0.2);
  display: inline-block;
  vertical-align: top;
}

.container .contain .cards .padding .form .submit:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
}

.container .contain .cards .tabbar {
  position: relative;
  background: linear-gradient(180deg, #0d1220, #111827);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.container .contain .cards .tabbar .li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 15px;
  font-family: BebasNeue;
  font-size: 20px;
  cursor: pointer;
  transition: all .2s;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  color: #dadada;
  line-height: 60px;
  text-shadow: 0 1px 0px rgba(0, 0, 0, 0.15);
}

.container .contain .cards .tabbar .label {
  position: relative;
  padding: 15px;
  font-family: BebasNeue;
  font-size: 20px;
  transition: all .2s;
  overflow: hidden;
  text-transform: uppercase;
  color: #484848;
  display: flex;
  align-items: center;
}

.container .contain .cards .tabbar .label * {
  font-family: BebasNeue;
  font-size: 20px;
}

.container .contain .cards .tabbar .add {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 10px;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8a8a8a;
  cursor: pointer;
  transition: all .2s;
  opacity: .8;
  min-width: 50px;
  text-transform: uppercase;
  font-weight: bold;
}

.container .contain .cards .tabbar .add:hover {
  opacity: 1;
  text-decoration: underline;
}

.container .contain .cards .tabbar .li:after {
  content: '';
  position: absolute;
  border: 6px solid transparent;
  transform: rotate(45deg);
  border-right-color: transparent;
  border-bottom-color: transparent;
  left: calc(50% - 6px);
  bottom: -10px;
  transition: all .4s;
}

.container .contain .cards .tabbar .li:hover {
  color: #ffd700;
}

.container .contain .cards .tabbar .li:hover:after {
  border-color: #ffd700;
  bottom: -6px;
}

.container .contain .cards .tabbar .li[active] {
  color: #ffd700;
}

.container .contain .cards .tabbar .li[active]:after {
  border-color: #ffd700;
  bottom: -6px;
}

.container .contain .cards .subtabbar {
  position: relative;
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.container .contain .cards .subtabbar .li {
  display: inline-block;
  padding: 7px 4px 10px 4px;
  color: rgba(255, 255, 255, .9);
  font-family: BebasNeue;
  cursor: pointer;
  text-shadow: 0 1px 1.5px rgba(0, 0, 0, .2);
  letter-spacing: 1px;
  position: relative;
  transition: all .1s;
  font-size: 16px;
}

.container .contain .cards .subtabbar .li .icon {
  position: relative;
  max-height: 30px;
  max-width: 30px;
  overflow: hidden;
}

.container .contain .cards .subtabbar .li .icon img {
  width: 50px;
}

.container .contain .cards .subtabbar .li[active]:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #ffd700;
}

.container .contain .cards .subtabbar .li:hover {
  color: #ffd700;
}

.container .contain .cards .subtabbar .li[active] {
  color: #ffd700;
}

.container .contain .cards .ladder {
  position: relative;
  min-height: 402px;
}

.container .contain .cards .ladder .list {
  position: relative;
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  background-color: #111827;
}

.container .contain .cards .ladder .list .rank {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  border-right: 1px solid rgba(255, 215, 0, 0.06);
  background-color: #0d1220;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ffd700;
  font-weight: bold;
}

.container .contain .cards .ladder .list .avatar {
  position: absolute;
  left: 40px;
  top: 0;
  width: 40px;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-right: 1px solid rgba(255, 215, 0, 0.06);
  align-items: center;
}

.container .contain .cards .ladder .list .avatar img {
  width: calc(100% - 10px);
  margin-left: 5px;
}

.container .contain .cards .ladder .list .name {
  position: relative;
  margin-left: 80px;
  margin-right: 130px;
  display: flex;
  min-height: 25px;
  align-items: center;
  padding: 10px;
  transition: all .2s;
  font-size: 12px;
  color: #c8d0d8;
  font-weight: bold;
  cursor: pointer;
}

.container .contain .cards .ladder .list .name:hover {
  text-decoration: underline;
  color: #ffd700;
}

.container .contain .cards .ladder .list .length {
  position: absolute;
  right: 0;
  width: 129px;
  display: flex;
  color: #8899a6;
  font-weight: bold;
  font-size: 12px;
  top: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: #0d1220;
  border-left: 1px solid rgba(255, 215, 0, 0.06);
}

.alertzone {
  position: fixed;
  right: 0;
  top: 112px;
  width: auto;
  max-height: calc(100vh - 112px);
  overflow: hidden;
  z-index: 101;
  transition: all .3s;
}

.alertzone[scrolling] {
  top: 40px;
  max-height: calc(100vh - 40px);
}

.alertzone .alert {
  position: relative;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .4);
  overflow: hidden;
  padding: 15px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  transition: all .3s;
  background: linear-gradient(135deg, #c5001e, #a0001a);
  color: white;
  font-size: 12px;
  cursor: pointer;
  opacity: .9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.alertzone .alert.green {
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.alertzone .alert:hover {
  opacity: 1;
}

.alertzone .alert .alert-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 8px 8px;
}

.alertzone .alert .alert-progress-bar {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 8px 8px;
  transition: width 8s linear;
}

*[waiting] {
  cursor: not-allowed;
}

.container .contain .cards .cover {
  background-color: transparent;
  height: 255px;
  transition: all .2s;
  position: relative;
  background: url(images/covers/0.png) no-repeat center top transparent;
  background-size: auto 100%;
}

.container .contain .cards .cover .after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #111827, transparent);
  z-index: 1;
}

.container .contain .cards .cover .pdc {
  width: 100%;
  height: 255px;
  transition: all .2s;
  position: relative;
  z-index: 0;
}

.container .contain .cards .cover .border {
  position: absolute;
  left: 50%;
  top: 50px;
  transition: all .2s;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  z-index: 3;
  overflow: hidden;
}

.container .contain .cards .cover .border img {
  width: 170px;
}

.container .contain .cards .cover .pdp {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 3;
}

.container .contain .cards .cover .pdp img {
  width: 100%;
  height: 100%;
  background-color: #111827;
}

.container .contain .cards .cover .name {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding: 10px;
  font-size: 16px;
  width: calc(100% - 40px);
  color: white;
  font-weight: bold;
  text-align: center;
  letter-spacing: .5px;
  z-index: 2;
}

.container .contain .cards .padding ._card {
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-height: 50px;
  border-radius: 1px;
  margin-bottom: 5px;
  transition: all .2s;
}

.container .contain .cards .padding ._card.small {
  width: 200px;
  background-color: transparent;
}

.container .contain .cards .padding ._card.large {
  width: calc(100% - 204px);
  min-width: 300px;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .container .contain .cards .padding ._card.small {
    width: 100%;
  }

  .container .contain .cards .padding ._card.large {
    width: 100%;
  }
}

.container .contain .cards .padding ._card ._subcard {
  position: relative;
  transition: all .2s;
  border-radius: 4px;
}

.container .contain .cards .padding ._card ._subcard.white {
  background-color: transparent;
  background-image: linear-gradient(to bottom, transparent, rgba(13, 18, 32, 0.8));
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.container .contain .cards .padding ._card ._subcard ._label {
  font-weight: bold;
  font-family: Roboto, Arial, sans-serif;
  text-transform: uppercase;
}

.container .contain .cards .padding ._card ._subcard ._textarea {
  font-family: Roboto, Arial, sans-serif;
  text-transform: capitalize;
  font-size: 12px;
  padding: 5px;
  border: none;
  background-color: transparent;
  resize: none;
}

.container .contain .cards .padding ._card ._subcard .progress {
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 15px;
  background-color: #d6d6d6;
  overflow: hidden;
}

.container .contain .cards .padding ._card ._subcard .progress:after {
  content: attr(xp) '/' attr(max) 'XP';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  color: black;
  font-size: 10px;
  line-height: 16px;
}

.container .contain .cards .padding ._card ._subcard .progress .bar {
  background-color: #ffc800;
  height: 100%;
  width: 0%;
  transition: all .2s;
}

.container .contain .cards .padding ._card ._box {
  padding: 0 5px;
  position: relative;
}

.container .contain .cards .padding ._card ._box ._subox {
  position: relative;
  border-radius: 5px;
  padding: 10px;
  padding-top: 12px;
  text-align: center;
  margin-top: 15px;
  border-left: 1px solid rgba(255, 215, 0, 0.12);
}

.container .contain .cards .padding ._card ._box ._subox:after {
  content: attr(date);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  color: #8899a6;
  background-color: #0d1220;
  padding: 0 10px;
  border-radius: 10px;
}

.container .contain .cards .padding ._card ._box ._subox:before {
  content: '';
  position: absolute;
  left: -.1%;
  top: -1px;
  height: 1px;
  background-color: rgba(255, 215, 0, 0.12);
  width: 50%;
}

.container .contain .cards .padding ._card ._subcard .avatar {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #111827;
  border-radius: 100%;
}

.container .contain .cards .padding ._card ._subcard .btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #e6a800, #cc9500);
  border-radius: 6px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 1px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.container .contain .cards .padding ._card ._subcard .btn:hover {
  background-color: #208fda;
}

.container .contain .cards .padding ._card ._subcard .btn:active {
  background-color: #1c7fc1;
}

.container .contain .cards .padding ._card ._subcard .btn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.container .contain .cards .padding ._item {
  display: block;
  position: relative;
  vertical-align: top;
  padding: 5px;
  background-color: #0d1220;
  min-height: 140px;
  transition: all .2s;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .15);
  margin-bottom: 5px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.06);
}

.container .contain .cards .padding ._item:hover {
  box-shadow: 0 4px 15px 0 rgba(230, 168, 0, .15);
  border-color: rgba(255, 215, 0, 0.15);
}

.container .contain .cards .padding ._item ._img {
  position: relative;
  width: 140px;
  height: 140px;
  text-align: center;
  overflow: hidden;
  background: url("images/sprites/bg-article.jpg") no-repeat;
  background-size: cover;
  margin-bottom: 5px;
  float: left;
}

.container .contain .cards .padding ._item ._img img {
  max-height: 100px;
  max-width: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all .2s;
  transform: translate(-50%, -50%);
}

.container .contain .cards .padding ._item ._i {
  position: relative;
  transition: all .2s;
  padding: 5px 10px;
  margin-left: 140px;
  font-size: 12px;
  font-size: 18px;
}

.container .contain .cards .padding ._item ._i ._actionners {
  position: relative;
}

.container .contain .cards .padding ._item ._i ._actionners ._btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #2a3548;
  color: white;
  margin-top: 5px;
}

.container .contain .cards .padding ._item ._i ._actionners ._btn.orange {
  background-color: #ff9800;
}

.container .contain .cards .padding ._item ._i ._actionners ._btn.red {
  background-color: red;
}

.container .contain .cards .padding ._item ._i ._actionners ._btn.blue {
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.container .contain .cards .padding ._item ._i ._actionners ._btn:hover {
  filter: saturate(.7);
  filter: -webkit-saturate(.7);
  filter: -moz-saturate(.7);
  filter: -ms-saturate(.7);
  filter: -o-saturate(.7);
  -webkit-filter: saturate(.7);
  -moz-filter: saturate(.7);
  -ms-filter: saturate(.7);
  -o-filter: saturate(.7);
}

.container .contain .cards .padding ._inventory {
  position: relative;
  display: inline-block;
  background-color: #0d1220;
  border-radius: 8px;
  cursor: pointer;
  width: 90px;
  height: 90px;
  margin-bottom: 5px;
  margin-left: 5px;
  padding: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 215, 0, 0.08);
}

.container .contain .cards .padding ._inventory[popped] {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  margin-left: 0;
  margin-top: 0;
  z-index: 10000;
  animation: 1s _inventoryShow 1 forwards;
  cursor: default;
  overflow: hidden;
  height: auto;
}

@keyframes _inventoryShow {
  0% {
    width: 90px;
    height: 90px;
    opacity: 0.4;
  }

  100% {
    width: 300px;
    height: auto;
    opacity: 1;
  }
}

.container .contain .cards .padding ._inventory[popped] ._img {
  width: 100px;
  height: 100px;
  float: left;
}

.container .contain .cards .padding ._inventory ._info {
  display: none;
}

@keyframes infoShow {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container .contain .cards .padding ._inventory[popped] ._info {
  display: block;
  animation: 1s infoShow ease 1 forwards;
  opacity: 0;
  animation-delay: .5s;
}

.container .contain .cards .padding ._inventory[popped] .name {
  position: relative;
  font-size: 15px;
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .7px;
  padding: 5px;
  margin-left: 100px;
}

.container .contain .cards .padding ._inventory[popped] .desc {
  position: relative;
  font-size: 10px;
  color: grey;
  text-transform: capitalize;
  font-weight: bold;
  letter-spacing: .4px;
  padding: 0 5px 5px 5px;
  margin-left: 100px;
}

.container .contain .cards .padding ._inventory:after {
  content: attr(stack);
  position: absolute;
  right: 0;
  top: 5px;
  padding: 3px 7px;
  background-color: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  font-size: 9px;
  border-radius: 0 0 0 10px;
}

.container .contain .cards .padding ._inventory[popped]:after {
  display: none;
}

.container .contain .cards .padding ._inventory ._img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url("images/sprites/bg-article.jpg") no-repeat;
  background-size: cover;
}

.container .contain .cards .padding ._inventory ._img img {
  max-height: 80px;
  max-width: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all .2s;
  transform: translate(-50%, -50%);
}

.container .contain .cards .padding ._inventory[popped] .sell {
  padding: 0 5px;
  margin-left: 100px;
  text-align: right;
}

.container .contain .cards .padding ._inventory[popped] .sell .input {
  display: inline-block;
  position: relative;
  text-align: left;
}

.container .contain .cards .padding ._inventory[popped] .sell .input.full input {
  width: 155px;
}

.container .contain .cards .padding ._inventory[popped] .sell .input:after {
  content: attr(label);
  position: absolute;
  left: 0;
  top: 0;
  padding: 3px 5px;
  color: grey;
  font-size: 10px;
  font-weight: bold;
}

.container .contain .cards .padding ._inventory[popped] .sell input {
  position: relative;
  padding: 13px 12px 7px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  margin-bottom: 5px;
  width: 67px;
  background-color: #0d1220;
  color: #d4d4d4;
}

.container .contain .cards .padding ._inventory[popped] .sell button {
  position: relative;
  display: inline-block;
  padding: 7px 8px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  border: none !important;
  outline: none !important;
  letter-spacing: .4px;
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.container .contain .cards .padding ._inventory[popped] .sell button:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
}

.container .contain .cards .padding ._inventory[popped] .sell button:active {
  background: linear-gradient(135deg, #cc9500, #b38200);
}

.container .contain .cards .padding ._inventory[popped] .sell button.red {
  background-color: #ff0a2c;
}

.container .contain .cards .padding ._inventory[popped] .sell button.red:hover {
  background-color: #d20925;
}

.container .contain .cards .padding ._inventory[popped] .sell button.red:active {
  background-color: #ab0018;
}

.container .contain .cards .padding ._subcard table {
  width: 100%;
  max-width: 100%;
  position: relative;
}

._label {
  font-weight: bold;
  font-family: Roboto, Arial, sans-serif;
  text-transform: uppercase;
}

*.focusable {
  cursor: pointer;
}

*.focusable:hover {
  text-decoration: underline;
  cursor: pointer;
}

.container .contain .cards .padding ._book {
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: all .2s;
  display: inline-block;
}

.container .contain .cards .padding ._book .sheet {
  display: inline-block;
  position: relative;
  padding: 5px 8px;
  cursor: pointer;
  transition: all .2s;
  color: #667;
  font-weight: bold;
  font-size: 12px;
  margin-left: -1px;
}

.container .contain .cards .padding ._book .sheet:nth-child(1) {
  margin-left: 0;
}

.container .contain .cards .padding ._book .sheet:hover {
  color: #8899a6;
}

.container .contain .cards .padding ._book .sheet[active] {
  color: #ffd700;
  background-color: rgba(255, 215, 0, 0.08);
}

.container .contain .cards ._card {
  position: relative;
  background-color: #111827;
  transition: all .2s;
  margin-bottom: 5px;
  border-radius: 8px;
  overflow: hidden;
}

.container .contain .cards ._card ._bg {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 0;
  background-color: #0d1220;
  background: url(https://s.ankama.com/www/static.ankama.com/upload/backoffice/direct/2014-06-24/2700a3cd420f85242e2cc34d8a5f9048.jpg) no-repeat left center;
  background-size: cover;
}

.container .contain .cards ._card[right] ._bg {
  left: 0;
  right: 220px;
}

.container .contain .cards ._card[left] ._bg {
  left: 220px;
  right: 0;
}

.container .contain .cards ._card ._aside {
  position: relative;
  background-color: #111827;
  width: 200px;
  height: 230px;
  z-index: 2;
  padding: 10px;
}

.container .contain .cards ._card[left] ._aside {
  margin-right: calc(100% - 220px);
}

.container .contain .cards ._card[right] ._aside {
  margin-left: calc(100% - 220px);
}

.container .contain .cards ._card ._aside ._textarea {
  color: #8899a6;
  font-size: 12px;
  padding: 5px;
  max-width: 100%;
  max-height: 165px;
  overflow: hidden;
}

.container .contain .cards ._card ._aside ._footer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2.5px 10px;
  padding-bottom: 5px;
  background-color: #0d1220;
  text-align: right;
}

.container .contain .cards ._card ._aside ._footer .btn {
  position: relative;
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
  border-radius: 1px;
  text-transform: uppercase;
  background-color: #2a3548;
  padding: 5px 10px;
  letter-spacing: .5px;
}

.container .contain .cards ._card ._aside ._footer .btn:hover {
  background-color: #374b63;
}

.container .contain .cards ._card ._aside ._footer .btn.blue {
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

.container .contain .cards ._card ._aside ._footer .btn.blue:hover {
  background-color: #1b7ece;
}

.container .contain .cards ._card ._aside ._footer .btn.transparent {
  background-color: transparent;
  color: grey;
  cursor: default;
}

@media screen and (max-width: 885px) {
  .container .contain .cards ._card ._bg {
    height: 200px;
    width: 100%;
    left: 0;
    right: 0;
  }

  .container .contain .cards ._card[left] ._bg,
  .container .contain .cards ._card[right] ._bg {
    left: 0;
    right: 0;
  }

  .container .contain .cards ._card {
    height: 420px;
  }

  .container .contain .cards ._card[left] ._aside {
    margin-right: 0;
  }

  .container .contain .cards ._card[right] ._aside {
    margin-left: 0;
  }

  .container .contain .cards ._card ._aside {
    top: 170px;
    width: calc(100% - 40px);
    left: 10px;
  }
}


._window {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .7);
  z-index: 100;
}

._window ._panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
  width: 700px;
  background-color: #111827;
  min-height: 300px;
  max-height: 100vh;
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  color: #c8d0d8;
}

._window ._panel ._side {
  position: relative;
  transition: all .2s;
  vertical-align: top;
  margin-right: 220px;
  padding: 15px 30px;
}

._window ._panel ._textarea {
  padding: 5px;
  color: grey;
  font-size: 13px;
}

._window ._panel ._side ._row {
  position: relative;
  text-align: left;
}

._window ._panel ._side ._row ._item {
  position: relative;
  display: inline-block;
  width: calc(25% - 10px);
  max-width: calc(25% - 10px);
  padding: 5px;
  border-radius: 4px;
  text-align: center;
  vertical-align: top;
  min-width: 100px;
}

._window ._panel ._side ._row ._item:before {
  content: attr(stack);
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 2px 10px;
  background-color: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  border-radius: 10px;
  font-size: 10px;
}

._window ._panel ._side ._row ._item ._bg {
  background-color: rgba(255, 215, 0, 0.03);
  border-radius: 4px;
}

._window ._panel ._side ._row ._item ._bg img {
  width: auto;
}

._window ._panel ._aside {
  position: absolute;
  width: 199px;
  height: calc(100% - 40px);
  padding: 20px;
  right: 0;
  top: 0;
}

._window ._panel ._aside:after {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: calc(100% - 40px);
  top: 20px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
}

._window ._panel ._aside table {
  width: 100%;
}

._window ._panel ._aside table tr td {
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  padding: 5px;
  text-align: right;
  color: #8899a6;
}

._window ._panel ._aside table tr:last-child td {
  border-bottom: none;
}

._window ._panel ._aside ._actionners {
  position: relative;
  text-align: right;
}

._window ._panel ._aside ._actionners .btn {
  padding: 5px 10px;
  background-color: #2a3548;
  transition: all .2s;
  cursor: pointer;
  border-radius: 2px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: .5px;
  font-size: 12px;
}

._window ._panel ._aside ._actionners .btn:hover {
  background-color: #374b63;
}

._window ._panel ._aside ._actionners .btn.blue {
  background: linear-gradient(135deg, #e6a800, #cc9500);
}

._window ._panel ._aside ._actionners .btn.blue:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
}

._window ._panel ._aside ._actionners .btn.red {
  background-color: #f52e2e;
}

._window ._panel ._aside ._actionners .btn.red:hover {
  background-color: #d22525;
}

._window ._panel ._aside ._actionners .btn.transparent {
  background-color: transparent;
  color: grey;
  cursor: default;
}

@media screen and (max-width: 800px) {
  ._window ._panel {
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 425px) {
  ._window ._panel ._aside {
    position: relative;
    padding: 10px;
    width: auto;
  }

  ._window ._panel ._aside:after {
    display: none;
  }

  ._window ._panel ._side {
    margin-right: 0;
  }
}


.HiddenPass {
  position: relative;
  padding: 10px;
}

.HiddenPass select {
  padding: 5px 15px;
  border-radius: 2px;
  min-width: 100px;
  float: right;
}

.HiddenPass .accessType {
  position: relative;
  background-color: red;
}

.HiddenPass *[sms-info] {
  padding: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  background-color: #111827;
  border-radius: 8px;
  color: #c8d0d8;
}

.HiddenPass ._countryPanel {
  padding: 10px;
  position: relative;
  text-align: center;
}

.HiddenPass ._countryPanel li {
  display: inline-block;
  padding: 5px 7px;
  background-color: #0d1220;
  border-radius: 100px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  cursor: pointer;
  color: #8899a6;
  transition: all .2s;
  font-weight: bold;
  font-size: 12px;
  margin-left: 3px;
  margin-bottom: 3px;
}

.HiddenPass ._countryPanel li:hover {
  background-color: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
}

.HiddenPass ._countryPanel li:active {
  background-color: rgba(255, 215, 0, 0.1);
}

.step3 {
  text-align: center;
  margin-bottom: 10px;
}

.step3 span.info {
  display: none;
}

.step3 input {
  padding: 5px 10px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  background-color: #0d1220;
  color: #d4d4d4;
  border-radius: 6px;
}

.step3 button {
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  outline-color: none;
  background: linear-gradient(135deg, #e6a800, #cc9500);
  color: white;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.step3 button:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
}

.container .contain .cards ._box[box] {
  position: relative;
  width: 500px;
  height: 300px;
  padding-bottom: 50px;
}

.container .contain .cards ._box ._character {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.container .contain .cards ._box ._base {
  position: absolute;
  left: 50%;
  top: calc(50% + 20px);
  transform: translate(-50%, -50%);
  z-index: 0;
  max-width: 80%;
}

.container .contain .cards ._box .side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 2;
}

.container .contain .cards ._box .side.left {
  left: 0;
}

.container .contain .cards ._box .side.right {
  right: 0;
}

.container .contain .cards ._box .side.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 100%;
}

.container .contain .cards ._box .side.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 100%;
}

.container .contain .cards ._box .side ._invent {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border: 5px solid #b3be4c;
  border-radius: 1px;
  transition: all .2s;
  background-color: rgba(255, 255, 255, 0.49);
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .container .contain .cards ._box[box] {
    width: 300px;
  }

  .container .contain .cards ._box .side ._invent {
    width: 30px;
    height: 30px;
  }
}

.container .contain .cards ._box .side.top ._invent {
  display: inline-block;
  vertical-align: top;
}

.container .contain .cards ._box .side ._invent img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  cursor: pointer;
  transition: all .2s;
}

.container .contain .cards ._box .side ._invent img:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.container .contain .cards ._box .side ._invent ._dropdown {
  display: block;
  transition: all .2s;
  width: 200px;
  background-color: #111827;
  z-index: 2;
  position: absolute;
  min-height: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 215, 0, 0.12);
  left: -5px;
  top: -5px;
}

.container .contain .cards .padding ._card:nth-child(1) ._boxcard {
  width: calc(100% - 5px);
}

@media screen and (max-width: 850px) {
  .container .contain .cards .padding ._card:nth-child(1) ._boxcard {
    width: 100%;
  }
}

.container .contain .cards .padding ._card ._boxcard {
  position: relative;
  transition: all .2s;
  background-color: #0d1220;
  border-radius: 8px;
}

.container .contain .cards .padding ._card ._boxcard ._title {
  position: relative;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .5px;
  background-color: rgba(255, 215, 0, 0.05);
  color: #ffd700;
  border-radius: 8px 8px 0 0;
}

.itemDrop {
  position: absolute;
  width: 180px;
  background-color: #111827;
  padding: 10px;
  left: 0;
  top: 0;
  z-index: 100;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  display: none;
  transition: all .2s;
  border: 1px solid rgba(255, 215, 0, 0.1);
  color: #c8d0d8;
}

.itemDrop ._icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(0, 0, 0, .1);
  border-radius: 2px;
  overflow: hidden;
  background-color: silver;
}

.itemDrop ._icon img {
  width: 100%;
}

.itemDrop ._name {
  position: absolute;
  right: 0;
  top: 0;
  left: 55px;
  padding: 10px;
  padding-right: 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.itemDrop ._jet {
  position: relative;
  transition: all .2s;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5px;
}

.itemDrop ._jet ._stats {
  position: relative;
  transition: all .2s;
  padding: 2px 5px;
  font-size: 12px;
  font-weight: normal;
  background-color: #0d1220;
  color: #c8d0d8;
}

.itemDrop ._jet ._stats:nth-child(even) {
  background-color: rgba(255, 215, 0, 0.03);
}

/* Paper form styles */
.paper form {
  position: relative;
  padding: 20px;
  padding-top: 5px;
}

.paper form textarea {
  position: relative;
  width: calc(100% - 20px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 6px;
  resize: none;
  outline: none;
  background-color: #0d1220;
  color: #d4d4d4;
  transition: all .2s;
  padding: 10px;
  height: 120px;
}

.paper form textarea:focus {
  border-color: #e6a800;
  box-shadow: 0 0 10px rgba(230, 168, 0, 0.15);
}

.paper form button {
  position: relative;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all .2s;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: white;
  background: linear-gradient(135deg, #e6a800, #cc9500);
  box-shadow: 0 2px 8px rgba(230, 168, 0, .3);
  border: none !important;
  left: 50%;
  transform: translateX(-50%);
}

.paper form button:hover {
  background: linear-gradient(135deg, #22d4b8, #10a28e);
  box-shadow: 0 4px 12px rgba(230, 168, 0, .4);
}

.paper form button:active {
  background: linear-gradient(135deg, #cc9500, #b38200);
}

/* ===== Tabla de estadisticas del personaje ===== */
.container .Tcharacter {
  position: relative;
  transition: all .1s;
  background-color: rgba(255, 255, 255, 0.04);
  border: none !important;
  width: 100%;
}

.container .Tcharacter tr:first-child {
  background-color: rgba(165, 162, 136, 0.3);
}

.container .Tcharacter tr th {
  padding: 10px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.container .Tcharacter tr td {
  padding: 10px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.container .Tcharacter tr td:first-child,
.container .Tcharacter tr th:first-child {
  text-align: left;
  font-weight: bold;
}

.container .Tcharacter tr:last-child th,
.container .Tcharacter tr:last-child td {
  border-bottom: none;
}

.container .statistics {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
  vertical-align: middle;
  float: left;
  margin-right: 5px;
}

.container .statistics img {
  width: 100px;
  margin-left: -75px;
}