* {
  --primary-color: #000000;
  --secondary-color: #d6d6d6;
  --blue-color: #4f7de5;
}

.top-bar {
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
}

.top-bar .top-bar-content {
  height: 5rem;
}

.btn-group {
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  gap: 10px;
}

#earth {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw !important;
  max-width: 1800px !important;
  aspect-ratio: 1 / 1;
  top: 18vh !important;
  z-index: -8;
}

/* Mobile */
@media (max-width: 768px) {
  #earth {
    width: 100vw !important; /* full width on mobile */
    max-width: 100% !important;
    top: 10vh !important;
  }
}

.hero-board {
  overflow: hidden;
  border-radius: 30px;
}

.tag-line {
  background: #6363634d;
  width: fit-content;
  margin: auto;
  margin-bottom: 8vh;
  padding: 5px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 100;
}

.country-name {
  color: transparent;
  font-family: Silkscreen, cursive;
  font-weight: 400;
  font-size: 31px;
  -webkit-text-stroke: 1px var(--secondary-color);
}

.active-box {
  background: var(--blue-color);
  padding: 6px;
}

.active-box .active-count {
  font-family: Silkscreen, sans-serif;
  font-weight: 500;
  margin-left: 5px;
}

.active-box img {
  width: 33px;
  border-radius: 100px;
  border: 2px solid rgb(255, 255, 255);
}

.sub-title {
  font-family: Silkscreen, cursive;
  font-weight: 400;
}

.white-btn {
  background: #9797978c;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(4px);
  filter: brightness(1.1);
  border: 0.1px solid white;
  color: white;

  &:hover {
    background: #f3f3f38c;
    backdrop-filter: blur(7px);
    color: rgb(28, 28, 28);
    border: 0.1px solid rgb(142, 142, 142);
  }

  &:hover i {
    color: rgb(28, 28, 28);
  }
}

.white-btn i {
  margin-left: 7px;
  font-size: 16px;
}

.black-btn {
  background: #0000008c;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(4px);
  filter: brightness(1.1);
  border: 0.1px solid white;
  color: white;

  &:hover {
    background: #0000008c;
    backdrop-filter: blur(7px);
    color: rgb(243, 243, 243);
    border: 0.1px solid rgb(142, 142, 142);
  }

  &:hover i {
    color: rgb(255, 255, 255);
  }
}

.black-btn i {
  margin-left: 7px;
  font-size: 16px;
}


.install-btn{
       border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin: auto;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #2a2a2a;
    color: #515151;
}

.install-btn i{
      font-size: 24px;
}