.tool-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(255, 0, 128, 0.15);
}

.tool-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tool-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
  flex-grow: 1;
}

.view-tool-btn {
  padding: 0.6rem 1.2rem;
  background: var(--gradient-hot);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.view-tool-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.2);
}

.view-tool-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-tool-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .tool-card {
    padding: 1.5rem;
  }

  .tool-card h3 {
    font-size: 1.4rem;
  }

  .tool-card p {
    font-size: 0.95rem;
  }

  .view-tool-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .tool-card {
    padding: 1.25rem;
  }

  .tool-card h3 {
    font-size: 1.2rem;
  }

  .tool-card p {
    font-size: 0.9rem;
  }
}