
:root {

  /* Fonts*/
  --primary-font    : 'Poppins', sans-serif;
  --secondary-font  : 'Roboto', sans-serif;
  --third-font      : 'Playfair Display', sans-serif;

  /* Colors */
  --primary     : #0060fe;
  --gold        : #FFB830;
  --dark        : #0b0c1b;
  --semi-dark   : #1a1b2e;
  --semi-dark-2 : #212235;
  --text-gray   : #9193a8;
  --red         : #ec625f;
  --border      : #e2e9ee;
  --light       : #f4f8fb;

}
:root .light-theme {
  --text-gray   : #001033;
}
:root .light-theme .theme-footer {
  --text-gray   : #9193a8;
  /*padding: 0 20px;*/
}

html {
  font-family: var(--secondary-font);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  cursor: default;
  background-color: var(--dark);
}
body.light-theme {
  background-color: #ffffff;
}
html, body {
  overflow-x: hidden;
}
/*------------------------------------------------------*/

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  height: 54px;
  line-height: 1;
  padding: 0 36px;
  border-radius: 2px;
  letter-spacing: .8px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--secondary-font);
  transition: box-shadow .20s ease, background-color .20s ease, border-color .20s ease, color .20s ease;
}

/* btn-sm */
.btn-sm {
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
}

/* btn-rounded */
.btn-rounded {
  border-radius: 5px;
  
}

/* fill-primary */
.btn-fill-primary {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  /*box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);*/
}
.btn-fill-primary:hover {
  background-color: #003bdf;
  border-color: #003bdf;
}
/* fill-warning */
.btn-fill-warning {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.btn-fill-warning:hover {
  background-color: #d2962a;
  border-color: #d2962a;
}

/* outline-dark */
.btn-outline-dark {
  /*background-color: var(--semi-dark);*/
}
.btn-outline-dark.level-up {
  background-color: rgba(255, 255, 255, .03);
}
.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #ffffff;
}

.light-theme .btn-outline-dark {
  transition: all .4s ease-in-out;
    /*background-image: linear-gradient(45deg,#f3f5f8,#fff);*/
    /*border-width: 2px;*/
    /*border-color: #ffffff;*/
    /*box-shadow: 8px 8px 20px rgba(55,99,170,.1), -8px -8px 20px #fff;*/
    color: #000000;
}
.light-theme .btn-outline-dark:hover {
  background-color: var(--border);
}

/* fill-success */
.btn-fill-success {
  background-color: #15CD72;
  color: #fff;
  border: 1px solid #15CD72;
  /*box-shadow: 0 22px 20px -15px rgba(21, 205, 113, 0.5);*/
}
.btn-fill-success:hover {
  background-color: #13B966;
  border-color: #13B966;
}

/* btn-icon */
.btn-icon {
  margin-right: 10px;
  width: 20px;
}
.btn-icon.right-icon {
  margin-right: unset;
  margin-left: 10px;
}

/* shadow-off */
.btn.shadow-off {
  /*box-shadow: unset !important;*/
}

/* hover */
.btn:hover {
  box-shadow: none;
}

@media only screen and (max-width: 1199px) {
  .btn {
    font-size: 14px;
    height: 46px;
    /*padding: 0 26px;*/
  }
}
/*------------------------------------------------------*/

/* Backgrounds & Colors */
.bg-2 {
  background-color: #141526;
}
.light-theme .bg-2 {
  position: relative;
  background-color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 1;
  transition: all .4s ease-in-out;
    background-image: linear-gradient(180deg,#f3f5f8,#fff);
    border: 2px solid #fff;
    /*box-shadow: 8px 8px 20px rgba(55,99,170,.1), -8px -8px 20px #fff;*/

}
.primary-color {
  color: var(--primary);
}
/*------------------------------------------------------*/

/* Section head */
.se-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 0px;
}
.se-head .se-title-1 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.se-head .se-title-2 {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 25px;
}
.light-theme .se-head .se-title-2 {
  color: var(--dark);
}
@media only screen and (max-width: 1199.98px) {
  .se-head .se-title-2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-head .se-title-2 {
    font-size: 26px;
  }
}

/* 世界地图样式 */
.location-servers-map-wrapper {
  margin: 30px 0 50px;
}
.location-servers-map {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.location-servers-map .map-bg {
  width: 100%;
  opacity: 0.7;
}
.location-servers-map .location-server-item {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 10;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 6px rgba(0, 96, 254, 0.3);
}
.location-servers-map .location-server-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 2px;
  border: 6px solid transparent;
  border-right-color: #1a1a2e85;
  z-index: 21;
}
.location-servers-map .location-server-item::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 14px;
  background-color: #1a1a2e85;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 20;
  box-sizing: border-box;
}
/* 左侧指示 */
.location-servers-map .location-server-item.label-left::before {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 2px;
  border-right-color: transparent;
  border-left-color: #1a1a2e85;
}
.location-servers-map .location-server-item.label-left::after {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 14px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 96, 254, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(0, 96, 254, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 96, 254, 0); }
}
.location-servers-map .map-stats {
  position: absolute;
  bottom: 10%;
  left: 0;
  background-color: rgba(0, 96, 254, 0.1);
  border-radius: 12px;
  padding: 15px 25px;
}
.location-servers-map .stat-item {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 5px 0;
}
.light-theme .location-servers-map .stat-item {
  color: var(--dark);
}
.location-servers-map .stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
@media only screen and (max-width: 767.98px) {
  .location-servers-map .map-stats {
    position: absolute;
    bottom: 5%;
    left: 0;
    background-color: rgba(96, 165, 250, 0.15);
    border-radius: 8px;
    padding: 12px 20px;
    text-align: left;
    transform: translateY(30px);
  }
  .location-servers-map .stat-item {
    font-size: 14px;
    margin: 4px 0;
  }
  .location-servers-map .stat-num {
    font-size: 18px;
  }
  .location-servers-map .location-server-item {
    width: 10px;
    height: 10px;
    background-color: #3b82f6;
    border: 2px solid #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
  }
  .location-servers-map .location-server-item::before {
    border: 5px solid transparent;
    border-right-color: #1a1a2e85;
    margin-left: 1px;
  }
  .location-servers-map .location-server-item::before,
  .location-servers-map .location-server-item::after {
    display: none;
  }
  .location-servers-map .location-server-item:active::before,
  .location-servers-map .location-server-item:active::after,
  .location-servers-map .location-server-item:focus::before,
  .location-servers-map .location-server-item:focus::after {
    display: block;
  }
  .location-servers-map .location-server-item:active::before,
  .location-servers-map .location-server-item:focus::before {
    border: 5px solid transparent;
    border-right-color: #1a1a2e85;
    margin-left: 1px;
  }
  .location-servers-map .location-server-item:active::after,
  .location-servers-map .location-server-item:focus::after {
    font-size: 9px;
    padding: 3px 8px;
    margin-left: 11px;
  }
  .location-servers-map .location-server-item.label-left:active::before,
  .location-servers-map .location-server-item.label-left:focus::before {
    border-left-color: #1a1a2e85;
    border-right-color: transparent;
    margin-right: 1px;
  }
  .location-servers-map .location-server-item.label-left:active::after,
  .location-servers-map .location-server-item.label-left:focus::after {
    margin-right: 11px;
  }
}
/*------------------------------------------------------*/
