  .server-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .server-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #222;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(255,0,0,0.25);
  }

  .server-left {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 200px;
    margin-right: 20px;
  }

  .server-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
  }

  .btn-shop {
    background-color: #e74c3c;
    color: #fff;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
  }

  .btn-shop:hover {
    background-color: #c0392b;
    transform: scale(1.05);
  }

  @media (max-width: 576px) {
    .server-card {
      flex-direction: column;
      align-items: stretch;
    }

    .server-left {
      margin-right: 0;
      width: 100%;
    }

    .btn-shop {
      width: 100%;
      margin-top: 12px;
      text-align: center;
    }
  }