:root { 
    --background-color: #ffffff;
    --primary-color: #162934;
    --secondary-color: #fe3d78;
    scroll-behavior: smooth;

    --interface-color: #0c1018;
    --interface-color-rgb: 12, 16, 24;
    --interface-text-color: #f0cc00;
    --interface-text-color-rgb: 255, 193, 7;

    --bs-link-hover-color-rgb: rgb(10, 88, 202);
    --bs-link-color-rgb: rgb(10, 88, 202);
}

body {
    background-color: var(--background-color);
}

main {
  padding-top: 87px;
}

@media (min-width: 1200px) {
  main {
    padding-top: 74px;
  }
}

.form-floating>.form-control, .form-floating>.form-control-plaintext {
    padding:.5rem .75rem;
}

#banniere-mobile {
    display:block;
}

#banniere-desktop {
    display:none;
}

.color-gold {
    color:#edc450;
}

.color-silver {
    color:#b7bcbf;
}

.color-bronze {
    color:#d0ab76;
}

.color-chocolate {
    color:#65451c;
}

.btn-ljd-primary {
    background: #fe3d78;
    color: white;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    padding: .75rem 1.5rem;
}

.btn-ljd-primary:hover, .btn-ljd-primary:focus, .btn-ljd-primary:active {
  background: #fe3d78!important;
  border-color:#fe3d78!important;
  color: white!important;
}

.btn-ljd-primary.form-control:focus {box-shadow: 0 0 0 .25rem rgba(254, 61, 120,.25)!important;}

.btn-shop {
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: .75rem 1.5rem;
}

.btn-shop:hover, .btn-shop:active {
background: var(--primary-color)!important;
border-color:var(--primary-color)!important;
color: white!important;
}

.btn-youtube {
  background: #f70101;
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: .75rem 1.5rem;
}

.btn-youtube:hover, .btn-youtube:focus, .btn-youtube:active {
  background: #f70101!important;
  border-color:#f70101!important;
  color: white!important;
}

.btn-playin {
  background: var(--interface-color);
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: .5rem 1.5rem 1rem;
}

.btn-playin:hover, .btn-playin:focus, .btn-playin:active {
  background: var(--interface-color)!important;
  border-color:var(--interface-color)!important;
  color: white!important;
}

.btn-gamefound {
  background: #1baa64;
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: .75rem 1.5rem;
}

.btn-gamefound:hover, .btn-gamefound:focus, .btn-gamefound:active {
  background: #5fc392!important;
  border-color:#5fc392!important;
  color: white!important;
}

@media (min-width: 968px) {
    #banniere-mobile {
        display:none;
    }

    #banniere-desktop {
        display:block;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    padding: 15px 0;
    z-index: 997;
    background-color: var(--interface-color);
    border-bottom:2px solid rgb(var(--interface-text-color-rgb));
  }
  
  .header.sticked {
    box-shadow: 0px 2px 20px rgba(var(--interface-text-color-rgb), 0.1);
  }
  
  .header .logo h1 {
    font-size: 32px;
    font-weight: 300;
    color: white;
    margin-bottom:0;
  }
  
  .header .logo h1 span {
    color: var(--interface-text-color);
    font-weight: 500;
    font-size:1.5rem;
  }
  
  /*--------------------------------------------------------------
  # Desktop Navigation 
  --------------------------------------------------------------*/
  @media (min-width: 1281px) {
    .header {
      padding:0;
    }

    .navbar {
      padding: 0;
      position: relative;
    }
  
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navbar li {
      position: relative;
    }
  
    .navbar>ul>li {
      white-space: nowrap;
    }
  
    .navbar a,
    .navbar a:focus,
    .navbar ul li > span {
      display: flex;
      align-items: center;
      padding: .5rem 1rem;
      font-weight: 600;
      color: white;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
      cursor:pointer;
    }
  
    .navbar>ul>li>a:before,
    .navbar>ul>li>span:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--interface-text-color);
      visibility: hidden;
      transform: scaleX(0);
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before,
    .navbar ul li > span:hover:before {
      visibility: visible;
      transform: scaleX(0.7);
    }
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a,
    .navbar ul li > span:hover {
      color: var(--interface-text-color);
    }
  
    .navbar .dropdown a:hover:before,
    .navbar .dropdown:hover>a:before,
    .navbar .dropdown .active:before {
      visibility: hidden;
    }
  
    .navbar .dropdown a:hover,
    .navbar .dropdown .active,
    .navbar .dropdown .active:focus,
    .navbar .dropdown:hover>a {
      color: white;
      background: var(--interface-text-color);
    }
  
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 0;
      top: 100%;
      margin: 0;
      padding: 0 0 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: var(--interface-text-color);
      transition: 0.3s;
    }
  
    .navbar .dropdown ul li {
      min-width: 200px;
    }
  
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 400;
      color: rgba(255,255,255, 0.5);
    }
  
    .navbar .dropdown ul a i {
      font-size: 12px;
    }
  
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
      color: white;
      background: var(--interface-color);
    }
  
    .navbar .dropdown:hover>ul {
      opacity: 1;
      visibility: visible;
    }
  
    .navbar .megamenu {
      position: static;
    }
  
    .navbar .megamenu ul {
      right: 0;
      padding: 10px;
      display: flex;
    }
  
    .navbar .megamenu ul li {
      flex: 1;
    }
  
    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover>a {
      color: rgba(255,255,255, 0.5);
      background: none;
    }
  
    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
      color: white;
      background: var(--interface-color);
    }
  
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }

    .nav-link-marged {
      margin-left:1.5rem;
    }
  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
  @media (max-width: 1279px) {
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: calc(100% - 70px);
      bottom: 0;
      transition: 0.3s;
      z-index: 9997;
    }
  
    .navbar ul {
      position: absolute;
      inset: 0;
      padding: 10px 0;
      margin: 0;
      background: rgba(var(--interface-color-rgb), 0.9);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navbar a,
    .navbar a:focus,
    .navbar ul li > span {
      display: flex;
      align-items: center;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: 500;
      color: white;
      white-space: nowrap;
      transition: 0.3s;
      cursor:pointer;
    }
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a,
    .navbar ul li > span:hover {
      color: white;
    }
  
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
      position: static;
      display: none;
      padding: 10px 0;
      margin: 10px 20px;
      transition: all 0.5s ease-in-out;
      border: 1px solid rgba(var(--interface-text-color-light-rgb), 0.3);
    }
  
    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
      display: block;
    }
  
    .mobile-nav-toggle {
      display: block !important;
      color: white;
      font-size: 28px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      position: fixed;
      top: 45px;
      z-index: 9999;
      right: 1.5rem;
    }
  
    .mobile-nav-toggle.bi-x {
      color: white;
    }
  
    .mobile-nav-active {
      overflow: hidden;
      z-index: 9995;
      position: relative;
    }
  
    .mobile-nav-active .navbar {
      left: 0;
    }
  
    .mobile-nav-active .navbar:before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(var(--interface-color-rgb), 0.8);
      z-index: 9996;
    }
  }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section, .section {
    position:relative;
    padding: 40px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (min-width: 968px) {
    section, .section {
        padding: 60px 0;
    }
}

@media (max-width: 1199px) {
    section, .section {
        scroll-margin-top: 66px;
    }
}

section.dark {
    background: var(--primary-color);
    color:white;
}

section.darker {
  background: var(--interface-color);
  color:white;
}

section.dark a {
    color:white!important;
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
}

@media (min-width: 968px) {
    .section-title h2 {
        font-size: 48px;
    }
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 500;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn {width:100%;}

@media (min-width: 640px) {
  .hero .btn {width:auto;}
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Section Follow
--------------------------------------------------------------*/
.follow a {
    text-decoration:none!important;
}

/*--------------------------------------------------------------
# Section vote
--------------------------------------------------------------*/
.vote-team .vote-team-image-area {
    transition: all ease-in-out 0.2s;
    height: 100%;
}

.vote-team .vote-team-image-area.vote-team-finished {
    opacity: 0.6;
}

.vote-team .vote-team-image-area:not(.vote-team-finished) {
    cursor:pointer;
}
  
.vote-team .vote-team-image-area:not(.vote-team-finished):hover {
    transform: translateY(-1rem);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}

.progress {height: 60px; display: block; background: none; border-radius: 0;}
.progress .horizontal-stat {padding: 10px 0; margin: 0 0 6px 0; text-transform: uppercase; display: block; font-weight: 600; font-family: "Poppins", sans-serif; color: #222222;}
.progress .horizontal-stat .val {float: right; font-style: normal;}
.progress-bar-wrap {background: var(--bs-gray-200);}
.progress-bar {width: 1px; height: 20px; transition: 0.9s; background-color: var(--primary-color); transition: all ease-in-out 0.5s;}


/*--------------------------------------------------------------
# Section Discord
--------------------------------------------------------------*/
#discord-area {
    background: #4b54bd;
}

#discord-area a {
    text-decoration:none!important;
    color:white!important;
}

#discord-area i {
    font-size:3.5rem;
}

#discord-area #discord-join-us {
    background: white;
    color: #4b54bd;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    padding: .75rem 1.5rem;
}

#discord-area #discord-join-us:hover, #discord-area #discord-join-us:active {
    color: #4b54bd;
}

/*--------------------------------------------------------------
# Section Prize
--------------------------------------------------------------*/
ul#section-games-list {
    list-style: none;
    margin-bottom:0;
    padding: 0;
    text-align:center;
}

@media (min-width: 768px) {
    ul#section-games-list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}



ul#section-games-list a {
    text-decoration:none;
}

ul#section-games-list li {
    margin:1.2rem 0;
}

ul#section-games-list a .game-name {
    font-size:1.2rem;
    line-height:1rem;
    color:#ff2e90!important;
}

ul#section-games-list .game-types {
    font-style: italic;
}


/*--------------------------------------------------------------
# Section Planning
--------------------------------------------------------------*/
@media (min-width: 992px) {
    section#planning img {
        width:80%;
    }
}

@media (min-width: 1400px) {
    section#planning img {
        width:70%;
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--interface-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    color: white;
    text-decoration: none;
  }
  
  .scroll-top i {
    font-size: 24px;
    line-height: 0;
  }
  
  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--interface-color), transparent 20%);
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
    text-decoration: none;
  }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: white;
    background-color: var(--interface-color);
    font-size: 1.1rem;
    position: relative;
}

.footer .copyright {
    padding: 30px 0;
}
  
.footer .copyright p {
    margin-bottom: 0;
}
  
.footer .social-links a {
    font-size: 1.5rem;
    display: inline-block;
    background: color-mix(in srgb, var(--interface-color), transparent 90%);
    color: white;
    line-height: 1;
    padding: 8px 0;
    border-radius: 4px;
    text-align: center;
    transition: 0.3s;
}
  
.footer .social-links a:hover {
    background: var(--interface-color);
    text-decoration: none;
    color: rgb(var(--interface-text-color-rgb));
}


/*--------------------------------------------------------------
# Popup vote
--------------------------------------------------------------*/
#vote-modal .modal-content {
    border-radius:10px;
    border:none;
}

#vote-modal .vote-modal-image-area img {
    border-radius:10px 10px 0 0;
}

@media (min-width: 992px) {
    #vote-modal .vote-modal-image-area img {
        border-radius:10px 0 0 10px;
    }
}

.popup-btn-close {
    position: absolute;
    top: .75rem;
    right: 0.5rem;
    border: none;
    background: none;
}

#vote-modal h2 {
    font-size:1.5rem;
}

#vote-modal .vote-modal-explaination {
    font-size:.9rem;
}



/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.current-video {overflow:hidden; padding-bottom:56.25%; position:relative; height:0;}
.current-video iframe {left:0; top:0; height:100%;width:100%;position:absolute;}

.game-area-item ul {list-style:none;}

.game-area .game-area-item {
    background-color: var(--backgroun-color);
    padding: 20px;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .game-area .game-area-header {
    background: linear-gradient(rgba(var(--color-game-header), 1), rgba(var(--color-game-header), 0.5));
    background-size: cover;
    text-align: center;
    margin: -20px;
  }
  
  .game-area ul {
    padding-left: 0;
    margin:0 auto;
  }

  .game-area h3 {
    font-size:1.25rem;
  }

  .game-area .game-area-details {
    padding-top: 40px;
  }
  
  .game-area ul li {
    padding: 4px 0;
  }

  .game-area ul li i {
    width:30px;
    text-align:center;
  }
  
  .game-area ul i {
    line-height: 0;
  }

.fa-caret-up, .fa-caret-down {
    margin-right:2px;
}

.game-area .game-area-item button {
    font-size: 1rem;
    font-weight: bold;
    padding: .75rem 1.5rem;
    margin-top:-8px;
}

.game-area .game-area-description {
  padding-top:40px!important;
  font-style:italic;
  margin-bottom: 0;
}

.game-area .award-image {
  top: 1rem;
  right: 0;
}

.score-area {display:none;}
.text-time {
    color:#888888;
    font-size:.8rem;
}

.score-area .score-area-title {
  font-size:1.3rem;
  font-weight: 100;
}

.accordion-toggler {
  cursor:pointer;
}

.score-area .hiddenRow {
  padding:0;
}

.score-area-draw-explaination {
  font-size:14px;
  color: var(--primary-color)!important;
}

.no-trophy {width:30px; text-align:center; margin-right:1rem;}


.score-area .table th {
  background-color: #f8f9fa;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .team .team-member .member-img {
    position: relative;
  }
  
  .team .team-member .member-img:after {
    position: absolute;
    content: "";
    left: -1px;
    right: -1px;
    bottom: -1px;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-mask: url("../images/team-shape-FUiC6uY.svg") no-repeat center bottom;
    mask: url("../images/team-shape-FUiC6uY.svg") no-repeat center bottom;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 1;
  }
  
  .team .team-member .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    z-index: 2;
  }
  
  .team .team-member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
  }
  
  .team .team-member .social a:hover {
    color: var(--default-color);
  }
  
  .team .team-member .social i {
    font-size: 18px;
  }
  
  .team .team-member .member-info {
    background: var(--primary-color);
    color: white;
  }
  
  .team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
  }
  
  .team .team-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }

  .team .team-member .member-info .member-info-stats span {
    font-size:12px;
  }

  @media (min-width: 576px) {
    .team .team-member .member-info .member-info-stats span {
      font-size:14px;
    }
}
  
  .team .team-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding: 1rem 1rem 0 1rem;
    line-height: 26px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }
  
  .team .team-member:hover {
    transform: scale(1.03);
  }
  
  .team .team-member:hover .social {
    right: 8px;
    opacity: 1;
  }

.team-member .fa-youtube {
    color: #f70101!important;
}

.team-member .fa-twitch {
    color: #9147ff!important;
}

.team-member .fa-instagram {
    color: #DD2A7B!important;
}


/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .events-item {
  transition: 0.3s;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.events .events-item:hover {
  transform: scale(1.02);
}


/*--------------------------------------------------------------
# Versus Section
--------------------------------------------------------------*/
section.versus .versus-criteria-label {
  width: 240px;
  font-weight: bold;
  font-size: .9rem;
}

section.versus .versus-player-area {
  cursor: pointer;
}

section.versus .versus-player-name {
  font-size:1.5rem;
  font-weight:100;
  margin:.5rem 0;
  display:block;
}

section.versus .versus-logo {
  position: absolute;
  width: 160px;
  right: -80px;
  z-index: 150;
  top: calc(50% - 80px);
}

section.versus .versus-player-choose-before, section.versus .versus-player-choose-after {
  cursor:pointer;
  margin-top:3px;
}

section.versus .progress {
  height: 10px!important;
}

section.versus .progress-bar-wrap {
  background:none!important;
}

#choose-player-modal .modal-title {
  color:var(--interface-color);
}

#choose-player-modal .chooser-player-item {
  cursor:pointer;
}

#choose-player-modal .chooser-player-item.player-opponent, #choose-player-modal .chooser-player-item.player-actual {
  filter: grayscale(1);
  cursor:not-allowed;
}

.section.versus .versus-loser {
  filter: grayscale(100%);
  opacity: 0.6!important;
}

.section.versus h3 {
  text-align: center;
  font-weight: 300;
}

.versus-player-score {
  background-color: var(--interface-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translate(-50%);
  border-radius:5px 5px 0 0;
  padding:0 3rem 0 3rem;
}

.container-middle-center {min-height:100vh;}


#login-register-modal .lrm-tab {display: none;}
#login-register-modal .lrm-tab.lrm-tab-active {display: block;}
#login-register-modal .login-register-tab-switch {text-decoration: underline; cursor:pointer;}

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


.form-floating>.form-select {padding-bottom: .375rem!important;}




.nexus-tour-section .shop-item {
  padding: 20px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.nexus-tour-section .shop-item:hover {
  transition: all 0.4s ease-in-out 0s;
  transform: scale(1.05);
}

.btn-nexus-tour {
  background: #b2853c;
  color: white;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: .75rem 1.5rem;
}

.btn-nexus-tour:hover, .btn-nexus-tour:focus, .btn-nexus-tour:active {
background: #cc9d46!important;
border-color: #cc9d46!important;
color: white!important;
}

.btn-nexus-tour.form-control:focus {box-shadow: 0 0 0 .25rem rgba(254, 61, 120,.25)!important;}

.shop-location-address {
  text-decoration: none;
}

.shop-location-address:hover {
  text-decoration: underline;
}