/* Основний блок сервера */
.servers__server {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;

}

/* Іконка */
.server__pic {
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 2;
}
.server__img {
  width: 42px;
  height: 42px;
}

/* Верхній рядок */
.server__box_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.server__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
.server__rate {
  font-size: 14px;
  font-weight: normal;
  margin-left: 6px;
  color: #ffcc00;
}
.server__online {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-indicator {
  width: 10px;
  height: 10px;
  background-color: #00ff33 !important;
  border-radius: 50%;
}
.status-text {
  font-size: 14px;
  font-weight: bold;
}

/* Прогрес бар */
.server__progress {
  background: #1d1f2a;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.progress__load {
  background: linear-gradient(90deg, #ffcc00, #ff3300);
  width: 67%; /* під реальний % онлайн */
  height: 100%;
}

/* Теги */
.server__desc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.server__desc div {
  background: #111;
  border-left: 4px solid #ff1a1a;
  padding: 5px 10px;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
}

/* Кнопка */
.server__btns {
  display: flex;
  justify-content: flex-start;
}
.btn-outline {
  background: #1e90ff;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-outline:hover {
  background: #0f75d4;
}
@media (max-width: 992px) {
  .servers__server {
    max-width: 100%;
    padding: 16px;
    gap: 14px;
  }

  .server__title {
    font-size: 18px;
  }

  .status-text {
    font-size: 13px;
  }

  .btn-outline {
    padding: 8px 18px;
    font-size: 14px;
  }

  .server__desc div {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@media (max-width: 768px) {
  .servers__server {
    padding: 14px;
    gap: 12px;
  }

  .server__title {
    font-size: 16px;
  }

  .server__rate {
    font-size: 13px;
  }

  .status-text {
    font-size: 12px;
  }

  .server__desc {
    gap: 8px;
  }

  .btn-outline {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .servers__server {
    padding: 12px;
  }

  .server__img {
    width: 36px;
    height: 36px;
  }

  .server__title {
    font-size: 15px;
  }

  .server__desc div {
    font-size: 11px;
    padding: 4px 6px;
  }

  .btn-outline {
    padding: 7px 14px;
    font-size: 12px;
  }
}
