a.card {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border: 1.2px solid #3a3a3a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

a.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4c5fc7, #2c3fa9);
}

a.card:hover {
  transform: translateY(-2px);
  border-color: #4a4a4a;
  box-shadow: 0 4px 12px rgba(76, 95, 199, 0.2); 
}

a.card .image-container {
  position: relative;
  overflow: hidden;
}

a.card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*transition: transform 0.3s ease;*/
  padding-left: 4px;
  box-sizing: border-box;
}

/*a.card .image-container:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}*/

a.card .content {
  padding: 15px 20px 15px 20px; 
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

a.card .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.card .title {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

a.card .status {
  font-size: 14px;
  color: #00ff00;
  align-items: center;
  display: inline-flex;
  gap: 6px; 
}

a.card .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.card .description {
  margin: 0;
  font-size: 14px;
  color: #aaaaaa;
}

a.card .arrow {
  font-size: 18px;
  color: #ffffff;
}

.servers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  margin-bottom: 35px;
}

@media (max-width: 580px) {
  .servers {
    display: flex;
    flex-direction: column;
  }

  .card {
    height: auto;
  }
}